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

35 lines
778 B
TypeScript

import * as React from "react";
function SvgAlarm(
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="M17 13h-5V8M5 3.5L7 2M19 3.5L17 2"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 22a9 9 0 100-18 9 9 0 000 18z"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ForwardRef = React.forwardRef(SvgAlarm);
export default ForwardRef;