import * as React from 'react'; import logo from '@/assets/images/logo.png'; import { IconImageProps, IconSvgProps } from '@/types'; export const Logo: React.FC = ({ size = 36, height, ...props }) => ( // // // Napcat ); 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 ( ); }; export const RouteIcon = (props: IconSvgProps) => ( ); export const InfoIcon = (props: IconSvgProps) => ( ); export const SignalTowerIcon = (props: IconSvgProps) => ( ); export const SettingsIcon = (props: IconSvgProps) => ( ); export const TerminalIcon = (props: IconSvgProps) => ( ); export const PlusIcon = (props: IconSvgProps) => ( ); export const HTTPClientIcon = (props: IconSvgProps) => ( ); export const HTTPServerIcon = (props: IconSvgProps) => ( ); export const WebsocketIcon = (props: IconSvgProps) => ( ); export const PCIcon = (props: IconSvgProps) => ( ); export const BugIcon = (props: IconSvgProps) => ( ); export const PullRequestIcon = (props: IconSvgProps) => ( ); export const ChatIcon = (props: IconSvgProps) => ( ); export const PlayCircleIcon = (props: IconSvgProps) => ( ); export const VolumeHighIcon = (props: IconSvgProps) => { return ( ); }; export const VolumeLowIcon = (props: IconSvgProps) => { return ( ); }; export const LayoutIcon = (props: IconSvgProps) => ( ); export const TagIcon = (props: IconSvgProps) => ( ); export const UsersIcon = (props: IconSvgProps) => ( ); export const WatchersIcon = (props: IconSvgProps) => ( ); export const BookIcon = (props: IconSvgProps) => ( ); export const ChevronRightIcon = (props: IconSvgProps) => ( ); export const StarIcon = (props: IconSvgProps) => ( ); export const BugIcon2 = (props: IconSvgProps) => ( ); export const WebUIIcon = (props: IconSvgProps) => ( <> ); export const BietiaopIcon = (props: IconSvgProps) => ( <> ); export const FileIcon = (props: IconSvgProps) => ( ); export const LogIcon = (props: IconSvgProps) => ( );