packages/icons/src/components/DivideSquare.tsx
import * as React from 'react';
import type { SVGProps } from 'react';
const DivideSquare = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
fill="none"
viewBox="0 0 24 24"
{...props}
>
<g
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={2}
clipPath="url(#prefix__a)"
>
<path d="M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M8 12h8" />
</g>
<defs>
<clipPath id="prefix__a">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
export default DivideSquare;