UNPKG

@nlabs/gothamjs

Version:
10 lines (9 loc) 251 B
import type { FC } from 'react'; export interface SvgProps { readonly className?: string; readonly color?: string; readonly height?: number; readonly name: string; readonly width?: number; } export declare const Svg: FC<SvgProps>;