cherry-styled-components
Version:
Cherry is a design system for the modern web. Designed in Figma, built in React using Typescript.
10 lines (9 loc) • 422 B
TypeScript
import { default as React } from 'react';
import { Theme } from './theme';
interface IconProps extends React.SVGProps<SVGSVGElement> {
theme?: Theme;
}
declare function IconCheck({ ...props }: IconProps): React.JSX.Element;
declare function IconArrow({ ...props }: IconProps): React.JSX.Element;
declare function IconCalendar({ ...props }: IconProps): React.JSX.Element;
export { IconCheck, IconArrow, IconCalendar };