UNPKG

@atlaskit/icon

Version:

A React package that contains icons

12 lines (10 loc) 291 B
import { PureComponent } from 'react'; type State = {}; type Props = { label: string; size?: 'small' | 'medium' | 'large' | 'xlarge'; onClick?: (e: MouseEvent) => void; primaryColor?: string; secondaryColor?: string; }; export default class extends PureComponent<Props, State> {}