iconoir/packages/iconoir-react/src/SigmaFunction.tsx
2022-04-23 13:48:44 +00:00

31 lines
638 B
TypeScript

import * as React from 'react';
function SvgSigmaFunction(
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="M4 4h16v3M4 20h16v-3M4 20l8-8-8-8"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgSigmaFunction);
export default ForwardRef;