UNPKG

react-peeps

Version:

React implementation of the hand drawn illustration library called Open Peeps

10 lines (9 loc) 265 B
import React from 'react'; import { AccessoryType } from './z_options'; interface AccessoriesProps { piece: AccessoryType; strokeColor?: string; backgroundColor?: string; } declare const index: React.FC<AccessoriesProps>; export default index;