import * as React from "react";
import { IconSvgProps } from "@/types";
export const Logo: React.FC<{
size?: number;
width?: number;
height?: number;
}> = ({ size = 50, width = size, height = size, ...props }) => (
);
export const DiscordIcon: React.FC = ({
size = 24,
width,
height,
...props
}) => {
return (
);
};
export const TwitterIcon: React.FC = ({
size = 24,
width,
height,
...props
}) => {
return (
);
};
export const GithubIcon: React.FC = ({
size = 24,
width,
height,
...props
}) => {
return (
);
};
export const MoonFilledIcon = ({
size = 24,
width,
height,
...props
}: IconSvgProps) => (
);
export const SunFilledIcon = ({
size = 24,
width,
height,
...props
}: IconSvgProps) => (
);
export const HeartFilledIcon = ({
size = 24,
width,
height,
...props
}: IconSvgProps) => (
);
export const SearchIcon = (props: IconSvgProps) => (
);
export const NextUILogo: React.FC = (props) => {
const { width, height = 40 } = props;
return (
);
};