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

32 lines
834 B
TypeScript

import * as React from "react";
function SvgPost(
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="M2.906 17.505L5.337 3.718a2 2 0 012.317-1.623L19.472 4.18a2 2 0 011.622 2.317l-2.431 13.787a2 2 0 01-2.317 1.623L4.528 19.822a2 2 0 01-1.622-2.317z"
stroke="currentColor"
/>
<path
d="M8.929 6.382l7.879 1.389M8.234 10.321l7.879 1.39M7.54 14.26l4.924.869"
stroke="currentColor"
strokeLinecap="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgPost);
export default ForwardRef;