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 { FacialHairType } from './z_options'; interface FacialHairProps { piece: FacialHairType; strokeColor?: string; backgroundColor?: string; } declare const index: React.FC<FacialHairProps>; export default index;