20 lines
455 B
TypeScript
20 lines
455 B
TypeScript
|
|
const MonitorIcon = () => (
|
||
|
|
<svg
|
||
|
|
xmlns="http://www.w3.org/2000/svg"
|
||
|
|
width="16"
|
||
|
|
height="16"
|
||
|
|
viewBox="0 0 24 24"
|
||
|
|
fill="none"
|
||
|
|
stroke="currentColor"
|
||
|
|
strokeWidth="2"
|
||
|
|
strokeLinecap="round"
|
||
|
|
strokeLinejoin="round"
|
||
|
|
>
|
||
|
|
<rect x="2" y="3" width="20" height="14" rx="2" ry="2"></rect>
|
||
|
|
<line x1="8" y1="21" x2="16" y2="21"></line>
|
||
|
|
<line x1="12" y1="17" x2="12" y2="21"></line>
|
||
|
|
</svg>
|
||
|
|
);
|
||
|
|
|
||
|
|
export default MonitorIcon;
|