openpanel/documentation/src/assets/integration-icons/box.tsx
Stefan Pejcic 6a109d65d3 portovi
2024-02-10 18:36:02 +01:00

23 lines
553 B
TypeScript

import * as React from "react";
import { SVGProps } from "react";
const SvgBox = (props: SVGProps<SVGSVGElement>) => (
<svg
width={24}
height={24}
viewBox="0 0 24 24"
stroke="currentColor"
fill="none"
stroke-linecap="round"
stroke-linejoin="round"
xmlns="http://www.w3.org/2000/svg"
{...props}
>
<path d="M12 3l8 4.5l0 9l-8 4.5l-8 -4.5l0 -9l8 -4.5" />
<path d="M12 12l8 -4.5" />
<path d="M12 12l0 9" />
<path d="M12 12l-8 -4.5" />
</svg>
);
export default SvgBox;