@atlrdsgn/kit
Version:
An ever–expanding library of React components, primitives, and tools
22 lines (21 loc) • 739 B
TypeScript
import { default as React } from 'react';
export type IconProps = {
children?: never;
color?: string;
width?: string;
} & React.SVGAttributes<SVGElement>;
export type LogoProps = {
children?: never;
color?: string;
width?: string;
height?: string;
} & React.SVGAttributes<SVGElement>;
/** --- internal icon components only below this comment --- */
export type IconVariants = 'Arrow.Down.Icon' | 'Arrow.Up.Icon' | 'Small.Arrow.Down.Icon' | 'Small.Arrow.Up.Icon' | 'Small.Arrow.Left.Icon' | 'Small.Arrow.Right.Icon' | 'Logo.Icon' | 'Indicate.Icon';
export interface IconComponentProps {
children?: never;
icon?: IconVariants;
color?: string;
width?: string;
}
//# sourceMappingURL=types.d.ts.map