iconoir/packages/iconoir-react/src/server/Number3Square.tsx
2023-08-02 11:56:13 +00:00

33 lines
858 B
TypeScript

import * as React from "react";
function SvgNumber3Square(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
viewBox="0 0 24 24"
strokeWidth={1.5}
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M3 20.4V3.6a.6.6 0 01.6-.6h16.8a.6.6 0 01.6.6v16.8a.6.6 0 01-.6.6H3.6a.6.6 0 01-.6-.6z"
stroke="currentColor"
/>
<path
d="M9.5 10c0-1.105 1.12-2 2.5-2s2.5.895 2.5 2-.62 2-2 2M9.5 14c0 1.105 1.12 2 2.5 2s2.5-.895 2.5-2-.62-2-2-2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgNumber3Square);
export default ForwardRef;