iconoir/packages/iconoir-react/src/server/CompAlignLeft.tsx
2023-05-06 09:18:12 +00:00

33 lines
741 B
TypeScript

import * as React from "react";
function SvgCompAlignLeft(
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 22V2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M19 16H9a2 2 0 01-2-2v-4a2 2 0 012-2h10a2 2 0 012 2v4a2 2 0 01-2 2z"
stroke="currentColor"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCompAlignLeft);
export default ForwardRef;