forked from crowetic/commerce
23 lines
504 B
TypeScript
23 lines
504 B
TypeScript
const Info = ({ ...props }) => {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 24 24"
|
|
width="24"
|
|
height="24"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
fill="none"
|
|
shapeRendering="geometricPrecision"
|
|
{...props}
|
|
>
|
|
<circle cx="12" cy="12" r="10" fill="transparent" />
|
|
<path d="M12 8v4" stroke="currentColor" />
|
|
<path d="M12 16h.01" stroke="currentColor" />
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default Info
|