21 lines
597 B
TypeScript
21 lines
597 B
TypeScript
export function SquareBracketsIcon(props: React.SVGProps<SVGSVGElement>) {
|
|
return (
|
|
<svg
|
|
className={props.className}
|
|
width="30"
|
|
height="14"
|
|
viewBox="0 0 30 14"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<rect width="14" height="14" rx="1.53846" fill="currentColor" />
|
|
<path d="M6 11V3H9V4.5H7.5V9.5H9V11H6Z" fill="#0F172A" />
|
|
<rect x="16" width="14" height="14" rx="1.53846" fill="currentColor" />
|
|
<path
|
|
d="M25 3V11L21.9997 11V9.5H23.5V4.5H21.9997V3.00002L25 3Z"
|
|
fill="#0F172A"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|