| 2 | import * as React from 'react' |
| 3 | |
| 4 | interface Props { |
| 5 | type: string |
| 6 | role?: string |
| 7 | style?: React.CSSProperties |
| 8 | size?: 'xxs' | 'xs' | 'small' | 'medium' | 'large' | 'xl' | 'xxl' | 'xxxl' | 'inherit' |
| 9 | } |
| 10 | |
| 11 | const Icon = (props: Props) => { |
| 12 | return <AlifdIcon type={props.type} role={props.role} size={props.size} style={props.style} /> |
nothing calls this directly
no outgoing calls
no test coverage detected