import * as React from "react"; import { IconSvgProps } from "@/types"; 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 LoadingCircleIcon = ({ size = 24, className, ...props }: IconSvgProps & { size?: number; className?: string }) => ( ); export const LeftArrowIcon = ({ size = 24, width, height, ...props }: IconSvgProps) => ( ); export const SettingsIcon = ({ size = 24, width, height, ...props }: IconSvgProps) => ( ); export const PlusIcon = ({ size = 24, width, height, ...props }: IconSvgProps) => ( );