@activate-spritz-components/spritz-ui-components
Version:
This is shared components library for spritz projects.
12 lines (11 loc) • 320 B
TypeScript
import { FunctionComponent } from 'react';
import { Props as SVGProps } from 'react-inlinesvg';
export type SvgPros = SVGProps & {
alt?: string;
height?: number;
width?: number;
className?: string;
onClick?: (e: any) => void;
};
declare const Index: FunctionComponent<SvgPros>;
export default Index;