iconoir/packages/iconoir-react/src/server/SwitchOff.tsx

31 lines
732 B
TypeScript

import * as React from "react";
function SvgSwitchOff(
props: React.SVGProps<SVGSVGElement>,
svgRef?: React.Ref<SVGSVGElement>
) {
return (
<svg
width="1.5em"
height="1.5em"
strokeWidth={1.5}
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="currentColor"
ref={svgRef}
{...props}
>
<path
d="M7 13a1 1 0 100-2 1 1 0 000 2z"
fill="currentColor"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path d="M17 17H7A5 5 0 017 7h10a5 5 0 010 10z" stroke="currentColor" />
</svg>
);
}
const ForwardRef = React.forwardRef(SvgSwitchOff);
export default ForwardRef;