@ozen-ui/icons
Version:
A collection of icons
9 lines (8 loc) • 310 B
TypeScript
import type { SVGProps } from 'react';
export declare const iconSizeVariant: readonly ["s", "m"];
export type IconSize = (typeof iconSizeVariant)[number];
export type IconRef = SVGSVGElement;
export type IconProps = Omit<SVGProps<SVGSVGElement>, 'size'> & {
size?: IconSize;
'data-testid'?: string;
};