// Search new icons at https://reactsvgicons.com/ export { FiSave as IconSave } from 'react-icons/fi'; export { BiCheck as IconAccept } from 'react-icons/bi'; export { BiX as IconClose } from 'react-icons/bi'; export { BiX as IconRemove } from 'react-icons/bi'; export { BiTrash as IconDestroy } from 'react-icons/bi'; export { BiReset as IconReset } from 'react-icons/bi'; export { BiPlusCircle as IconNewItem } from 'react-icons/bi'; export { BiDuplicate as IconClone } from 'react-icons/bi'; export { LuReplace as IconReplace } from 'react-icons/lu'; export { BiDownload as IconDownload } from 'react-icons/bi'; export { BiUpload as IconUpload } from 'react-icons/bi'; export { LiaEdit as IconEdit } from 'react-icons/lia'; export { RiPushpinFill as IconPin } from 'react-icons/ri'; export { RiUnpinLine as IconUnpin } from 'react-icons/ri'; export { BiCog as IconSettings } from 'react-icons/bi'; export { LuUserCircle2 as IconUser } from 'react-icons/lu'; export { LuCrown as IconOwner } from 'react-icons/lu'; export { BiMeteor as IconAdmin } from 'react-icons/bi'; export { LuGlasses as IconReader } from 'react-icons/lu'; export { FiBell as IconFollow } from 'react-icons/fi'; export { FiBellOff as IconFollowOff } from 'react-icons/fi'; export { TbColumns as IconList } from 'react-icons/tb'; export { TbColumnsOff as IconListOff } from 'react-icons/tb'; export { BiFontFamily as IconText } from 'react-icons/bi'; export { BiFont as IconTextOff } from 'react-icons/bi'; export { RiTreeLine as IconTree } from 'react-icons/ri'; export { BiCollapse as IconGraphCollapse } from 'react-icons/bi'; export { BiExpand as IconGraphExpand } from 'react-icons/bi'; export { LuMaximize as IconGraphMaximize } from 'react-icons/lu'; export { BiGitBranch as IconGraphInputs } from 'react-icons/bi'; export { BiGitMerge as IconGraphOutputs } from 'react-icons/bi'; export { BiCheckShield as IconImmutable } from 'react-icons/bi'; export { RiOpenSourceLine as IconPublic } from 'react-icons/ri'; export { BiShareAlt as IconShare } from 'react-icons/bi'; export { LuLightbulb as IconHelp } from 'react-icons/lu'; export { LuLightbulbOff as IconHelpOff } from 'react-icons/lu'; export { BiFilterAlt as IconFilter } from 'react-icons/bi'; export { BiUpvote as IconMoveUp } from 'react-icons/bi'; export { BiDownvote as IconMoveDown } from 'react-icons/bi'; export { LuRotate3D as IconRotate3D } from 'react-icons/lu'; export { MdOutlineFitScreen as IconFitImage } from 'react-icons/md'; export { LuSparkles as IconClustering } from 'react-icons/lu'; export { LuSparkle as IconClusteringOff } from 'react-icons/lu'; interface IconSVGProps { viewBox: string; size?: string; className?: string; props?: React.SVGProps; children: React.ReactNode; } export interface IconProps { size?: string; className?: string; } function IconSVG({ viewBox, size = '1.5rem', className, props, children }: IconSVGProps) { return ( {children} ); } export function IconManuals(props: IconProps) { return ( ); } export function IconLogin(props: IconProps) { return ( ); } export function CheckboxChecked() { return ( ); } export function CheckboxNull() { return ( ); }