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 = 30, width, height, color = "white", ...props }) => { return ( ); }; export const IconX: React.FC = ({ size = 30, width, height, color = "white", ...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 FbIcon: React.FC = (props) => { const { width, height = 40 } = props; return ( ); }; export const ChevronUpIcon = ({ size, height = 24, width = 24, fill = "none", ...props }: IconSvgProps) => ( ); export const ChevronDownIcon = ({ size, height = 24, width = 14, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const ChevronRightIcon = ({ size, height = 24, width = 24, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const ChevronLeftWhite = ({ size, height = 24, width = 24, color = "white", ...props }: IconSvgProps & { color?: string }) => ( ); export const ChevronRightWhite = ({ size, height = 24, width = 24, color = "white", ...props }: IconSvgProps) => ( ); export const IgIcon = ({ size, height = 24, width = 14, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const YtIcon = ({ size, height = 24, width = 14, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const IdnIcon = ({ size, height = 24, width = 14, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const TwIcon = ({ size, height = 24, width = 14, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const TtIcon = ({ size, height = 24, width = 14, fill = "currentColor", ...props }: IconSvgProps) => ( ); export const EyeIcon = ({ size, height = 24, width = 14, fill = "currentColor", color = "black", ...props }: IconSvgProps) => ( ); export const DotsIcon = ({ size, height = 24, width = 24, fill = "none", ...props }: IconSvgProps) => ( ); export const MailIcon = (props: any) => ( ); export const SearchIcons = (props: any) => ( ) export const UnderLine = (props: any) => ( ) export const EyeSlashFilledIcon = (props: any) => ( ) export const EyeFilledIcon = (props: any) => ( ); export const ArrowIcons: React.FC = ({ size = 30, width, height, color = "white", ...props }) => { return ( ); }; export const Hotline = ({ size = 24, width, height, ...props }: IconSvgProps) => ( ); export const CustomerService = ({ size = 24, width, height, ...props }: IconSvgProps) => ( ); export const Mail = ({ size = 24, width, height, ...props }: IconSvgProps) => ( ); export const Location = ({ size = 24, width, height, ...props }: IconSvgProps) => ( ); export const Calender = ({ size = 24, width, height, ...props }: IconSvgProps) => ( );