| 1 |
import React from 'react' |
| 2 |
import type { SVGProps } from 'react' |
| 3 |
|
| 4 |
export const CardViewIcon: React.FC<SVGProps<SVGSVGElement>> = props => |
| 5 |
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}> |
| 6 |
<rect x="2" y="2" width="5.5" height="5.5" rx="1" stroke="currentColor" strokeWidth="1.6" /> |
| 7 |
<rect x="10.5" y="2" width="5.5" height="5.5" rx="1" stroke="currentColor" strokeWidth="1.6" /> |
| 8 |
<rect x="2" y="10.5" width="5.5" height="5.5" rx="1" stroke="currentColor" strokeWidth="1.6" /> |
| 9 |
<rect x="10.5" y="10.5" width="5.5" height="5.5" rx="1" stroke="currentColor" strokeWidth="1.6" /> |
| 10 |
</svg> |
| 11 |
|