UNPKG

react-drawing-board

Version:

Browser drawing board created with canvas and React.

8 lines (7 loc) 204 B
import React from 'react'; interface IIconProps { type: 'check' | 'close-circle'; style?: React.CSSProperties; } export default function Icon({ type, style }: IIconProps): JSX.Element; export {};