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

30 lines
796 B
TypeScript

import * as React from "react";
function SvgSmoking(
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="M18 19v3M18 16c0-1-1-2-3-2h-1a3 3 0 01-3-3V8.5A2.5 2.5 0 0113.5 6v0h.5M22 16c0-4.5-2-5.5-4-6 2-.5 4-1 4-4s-2.5-4-4-4M22 19v3"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<rect x={2} y={19} width={12} height={3} rx={0.6} stroke="currentColor" />
</svg>
);
}
const ForwardRef = React.forwardRef(SvgSmoking);
export default ForwardRef;