iconoir/packages/iconoir-react/src/server/CubeReplaceFace.tsx
2023-04-12 17:29:51 +00:00

36 lines
1,007 B
TypeScript

import * as React from "react";
function SvgCubeReplaceFace(
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}
>
<g
clipPath="url(#cube-replace-face_svg__clip0_3377_18972)"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M19 13.5v5.152a.6.6 0 01-.302.52l-6.4 3.658a.6.6 0 01-.596 0l-6.4-3.657A.6.6 0 015 18.652V13M12 22.5V17M23 8L11 1M13 15L1 8M1 8c3-5 7-2 10-7M13 15c3-5 7-2 10-7" />
</g>
<defs>
<clipPath id="cube-replace-face_svg__clip0_3377_18972">
<path fill="#fff" d="M0 0h24v24H0z" />
</clipPath>
</defs>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgCubeReplaceFace);
export default ForwardRef;