decentraland-ui
Version:
Decentraland's UI components and styles
10 lines (9 loc) • 556 B
TypeScript
import React from 'react';
export declare type Props = {
className?: string;
icon?: 'BaseMale' | 'BaseFemale' | 'Unisex' | 'body_shape' | 'earring' | 'eyebrows' | 'eyes' | 'eyewear' | 'facial_hair' | 'feet' | 'hair' | 'hat' | 'helmet' | 'lower_body' | 'mask' | 'mouth' | 'tiara' | 'top_head' | 'upper_body' | 'skin' | 'hands_wear' | 'play-once' | 'play-loop' | 'smart-wearable' | 'sound' | 'social' | 'props' | 'sparkles' | 'places' | 'utility';
text?: string;
inline?: boolean;
onClick?: () => void;
children?: React.ReactNode;
};