UNPKG

react-peeps

Version:

React implementation of the hand drawn illustration library called Open Peeps

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