ov25-ui
Version:
A UI configurator for OV25 product visualization
11 lines (10 loc) • 339 B
TypeScript
import * as React from 'react';
interface SwatchIconProps {
className?: string;
fill?: string;
stroke?: string;
strokeWidth?: string | number;
size?: number;
}
export declare const SwatchIcon: React.MemoExoticComponent<({ className, fill, stroke, strokeWidth, size }: SwatchIconProps) => React.JSX.Element>;
export {};