UNPKG

react-peeps

Version:

React implementation of the hand drawn illustration library called Open Peeps

12 lines (11 loc) 405 B
import React from 'react'; import { BustPoseType } from './bust/z_options'; import { SittingPoseType } from './sitting/z_options'; import { StandingPoseType } from './standing/z_options'; interface PoseProps { piece: BustPoseType | SittingPoseType | StandingPoseType; strokeColor?: string; backgroundColor?: string; } declare const index: React.FC<PoseProps>; export default index;