UNPKG

react-peeps

Version:

React implementation of the hand drawn illustration library called Open Peeps

11 lines (10 loc) 255 B
export interface PieceType { strokeColor?: string; backgroundColor?: string; } export declare type GradientType = { type?: 'RadialGradient' | 'LinearGradient'; degree?: number; firstColor: string; secondColor: string; };