import * as React from 'react'; import { IconSvgProps } from '@/types'; export const Logo: React.FC = ({ size = 36, width, height, ...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) => ( );