@mob-on/react-open-iconic-svg
Version:
Open iconic React version, with improved accessibility
16 lines (15 loc) • 644 B
JavaScript
import React from "react";
export const IconLightbulb = ({ alt = "Lightbulb", ...props }) => {
return (
<svg
width="8"
height="8"
{...props}
className={`open-iconic open-iconic-lightbulb-icon ${props.className ||
""}`}
>
{alt && <title>{alt}</title>}
<path d="M4.41 0a.5.5 0 00-.13.06l-3 1.5a.5.5 0 10.44.88l3-1.5A.5.5 0 004.41 0zm1 1.5a.5.5 0 00-.13.06l-4 2a.5.5 0 10.44.88l4-2a.5.5 0 00-.31-.94zm0 2a.5.5 0 00-.13.06l-3 1.5A.5.5 0 002.5 6h2a.506.506 0 00.16-1l1.06-.56a.5.5 0 00-.31-.94zM2.85 7a.506.506 0 00.16 1h1a.5.5 0 100-1h-1a.5.5 0 00-.09 0 .5.5 0 00-.06 0z" />
</svg>
);
};