import { ComponentProps, FunctionComponent, SVGProps } from 'react'; import { ctw } from '../../../utils/ctw/ctw'; /** * @description The Ballerine logo SVG found in Ballerine's Figma design. * @param props * @constructor */ export const BallerineLogo: FunctionComponent> = props => { return ( ); }; /** * @description The home SVG found in Ballerine's Figma design. * @param props * @constructor */ export const HomeSvg: FunctionComponent> = props => { return ( ); }; /** * @description The checked checkbox SVG found in Ballerine's Figma design. * @param props * @constructor */ export const CheckedSvg: FunctionComponent> = props => { return ( ); }; /** * @description The cog (settings) SVG found in Ballerine's Figma design. * @param props * @constructor */ export const CogSvg: FunctionComponent> = props => { return ( ); }; /** * @description The log out SVG found in Ballerine's Figma design. * @param props * @constructor */ export const LogOutSvg: FunctionComponent> = props => { return ( ); }; /** * @description The magnifying glass SVG found in Ballerine's Figma design. * @param props * @constructor */ export const MagnifyingGlassSvg: FunctionComponent> = ({ className, ...props }) => { return ( ); }; /** * @description The filter SVG found in Ballerine's Figma design. * @param props * @constructor */ export const FilterSvg: FunctionComponent> = ({ className, ...props }) => { return ( ); }; /** * @description The sort SVG found in Ballerine's Figma design. * @param props * @constructor */ export const SortSvg: FunctionComponent> = props => { return ( ); }; /** * @description The rejected SVG found in Ballerine's Figma design. * @param props * @constructor */ export const RejectedSvg: FunctionComponent> = props => { return ( ); }; /** * @description The approved SVG found in Ballerine's Figma design. * @param props * @constructor */ export const ApprovedSvg: FunctionComponent> = props => { return ( ); }; /** * @description The chevron SVG found in Ballerine's Figma design. * @param props * @constructor */ export const ChevronDownSvg: FunctionComponent> = ({ className, ...rest }) => { return ( ); }; /** * @description The warning SVG found in Ballerine's Figma design. * @param props * @constructor */ export const WarningSvg: FunctionComponent> = props => { return ( ); }; /** * @description An SVG of an 'X' from Heroicons. * * @see {@link https://heroicons.com/|Heroicons} */ export const XMarkSvg: FunctionComponent> = props => { return ( ); }; /** * @description The ellipsis SVG found in Ballerine's Figma design. * @param props * @constructor */ export const EllipsisSvg: FunctionComponent> = props => { return ( ); }; /** * @description A chevron left SVG from Heroicons. * * @see {@link https://heroicons.com/|Heroicons} */ export const ChevronLeftSvg: FunctionComponent> = props => { return ( ); }; /** * @description A chevron right SVG from Heroicons. * * @see {@link https://heroicons.com/|Heroicons} */ export const ChevronRightSvg: FunctionComponent> = props => { return ( ); }; /** * @description An SVG of a checkmark from Heroicons. * * @see {@link https://heroicons.com/|Heroicons} */ export const CheckSvg: FunctionComponent> = ({ className, ...props }) => { return ( ); }; export const PhotoSvg = (props: SVGProps) => { return ( ); }; export const NoCasesSvg = (props: SVGProps) => ( ); export const NoTasksSvg = (props: SVGProps) => ( ); export const DoubleCaretSvg = (props: SVGProps) => ( ); export const UnassignedAvatarSvg = (props: SVGProps) => ( ); export const CopySvg = (props: SVGProps) => ( ); export const DownloadFileSvg: FunctionComponent> = props => ( ); export const NoIndividualsSvg: FunctionComponent> = props => { return ( ); };