UNPKG

@coconut-software/ui

Version:

React components for faster and easier web development.

9 lines (8 loc) 341 B
import type { PropsWithChildren } from 'react'; export interface SvgIconProps { color?: SvgIconColor; viewBox?: string; } export type SvgIconColor = 'default' | 'inherit' | 'primary' | 'secondary'; declare function SvgIcon({ children, color, viewBox, }: PropsWithChildren<SvgIconProps>): JSX.Element; export default SvgIcon;