(props: IconProps)
| 37 | } |
| 38 | |
| 39 | export function IconClose(props: IconProps) { |
| 40 | return ( |
| 41 | <Icon {...props} stroke={props.stroke || 'currentColor'}> |
| 42 | <title>Close</title> |
| 43 | <line |
| 44 | x1="4.44194" |
| 45 | y1="4.30806" |
| 46 | x2="15.7556" |
| 47 | y2="15.6218" |
| 48 | strokeWidth="1.25" |
| 49 | /> |
| 50 | <line |
| 51 | y1="-0.625" |
| 52 | x2="16" |
| 53 | y2="-0.625" |
| 54 | transform="matrix(-0.707107 0.707107 0.707107 0.707107 16 4.75)" |
| 55 | strokeWidth="1.25" |
| 56 | /> |
| 57 | </Icon> |
| 58 | ); |
| 59 | } |
| 60 | |
| 61 | export function IconArrow({direction = 'right'}: IconProps) { |
| 62 | let rotate; |
nothing calls this directly
no outgoing calls
no test coverage detected