@hc.ds/mobile
Version:
Healthy Church Design System - HC Mobile
19 lines (16 loc) • 379 B
text/typescript
import { IconName } from '@fortawesome/fontawesome-svg-core';
export interface IconProps {
name: IconName;
size?: 'regular' | 'large' | 'small' | 'xsmall';
variant?: 'light' | 'regular' | 'solid';
theme?:
| 'primary'
| 'success'
| 'danger'
| 'warning'
| 'light'
| 'dark'
| 'weak';
testID?: string;
}
export { IconName };