Signpost Light icon by Phosphor in PNG format

Signpost Light

Version 2.0.8
Updated Feb 2, 2024
Similar icons
30
Preview
Signpost Light icon
Color
Frame
Component
IconPhSignpostLight.tsx
import * as React from "react";
// By: ph
// See: https://v0.app/icon/ph/signpost-light
// Example: <IconPhSignpostLight width="24px" height="24px" style={{color: "#000000"}} />
export const IconPhSignpostLight = ({
height = "1em",
fill = "currentColor",
focusable = "false",
...props
}: Omit<React.SVGProps<SVGSVGElement>, "children">) => (
<svg
role="img"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 256 256"
height={height}
focusable={focusable}
{...props}
>
<path
fill={fill}
d="m244.46 108l-36-40a6 6 0 0 0-4.46-2h-70V32a6 6 0 0 0-12 0v34H40a14 14 0 0 0-14 14v64a14 14 0 0 0 14 14h82v66a6 6 0 0 0 12 0v-66h70a6 6 0 0 0 4.46-2l36-40a6 6 0 0 0 0-8m-43.13 38H40a2 2 0 0 1-2-2V80a2 2 0 0 1 2-2h161.33l30.6 34Z"
/>
</svg>
);