test-iki-mini-app
Version:
ứng dựng bán hàng trên mini app z a l o
19 lines (17 loc) • 702 B
JSX
import React from "react";
export default function IconLocation2({ className, ...rest }) {
return (
<svg
fill="currentColor"
id="Layer_1"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 512 512"
enableBackground="new 0 0 512 512"
xmlSpace="preserve"
className={`${className}`}
{...rest}
>
<path d="M256,0C149.3,0,64,85.3,64,192c0,36.9,11,65.4,30.1,94.3l141.7,215v0c4.3,6.5,11.7,10.7,20.2,10.7c8.5,0,16-4.3,20.2-10.7 l141.7-215C437,257.4,448,228.9,448,192C448,85.3,362.7,0,256,0z M256,298.6c-58.9,0-106.7-47.8-106.7-106.8 c0-59,47.8-106.8,106.7-106.8c58.9,0,106.7,47.8,106.7,106.8C362.7,250.8,314.9,298.6,256,298.6z" />
</svg>
);
}