import * as React from "react"; import { IconSvgProps } from "@/types"; 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: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const SunFilledIcon: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const SearchIcon: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const ChevronDownIcon: React.FC = ({ size = 24, width, height, strokeWidth = 1.5, ...props }) => ( ); export const PlusIcon: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const VerticalDotsIcon: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const DeleteIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const CheckIcon: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const CrossIcon: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const PassIcon: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const RocketIcon: React.FC = ({ size = 24, width, height, ...props }) => { return ( ); }; export const AlertIcon: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const NotificationIcon: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const IdIcon: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const DoneIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const CopyIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const FlowIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const ConnectionIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const ConnectionTrue: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const ConnectionFalse: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const ConnectionPending: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const SuccessIcon: React.FC = ({ size = 24, width, height, ...props }) => ( ); export const ArrowUpIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const ArrowDownIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const ChevronsLeftRightIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const PlusCircleIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const CustomFilterIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const SaveIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const AddIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const ScheduleIcon: React.FC = ({ size, height, width, ...props }) => { return ( ); }; export const InfoIcon: React.FC = ({ size = 24, width, height, ...props }) => ( );