iconoir/packages/iconoir-react/src/MediumPriority.tsx
2023-01-26 18:36:43 +00:00

42 lines
1.1 KiB
TypeScript

import * as React from "react";
import { IconoirContext } from "./IconoirContext";
function SvgMediumPriority(
passedProps: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
const context = React.useContext(IconoirContext);
const props = {
...context,
...passedProps,
};
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}
>
<g
clipPath="url(#medium-priority_svg__clip0_2475_13213)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M11.576 1.424a.6.6 0 01.848 0l10.152 10.152a.6.6 0 010 .848L12.424 22.576a.6.6 0 01-.848 0L1.424 12.424a.6.6 0 010-.848L11.576 1.424zM6 12h4M14 12h4" />
</g>
<defs>
<clipPath id="medium-priority_svg__clip0_2475_13213">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgMediumPriority);
export default ForwardRef;