Skip to content

Commit 95df710

Browse files
committed
feat: add map pin full icon
1 parent 57dc6b1 commit 95df710

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

src/components/icons/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ export { default as LogOut } from './logOut';
214214
export { default as Mail } from './mail';
215215
export { default as Map } from './map';
216216
export { default as MapPin } from './mapPin';
217+
export { default as MapPinFill } from './mapPinFill';
217218
export { default as Maximize } from './maximize';
218219
export { default as Maximize2 } from './maximize2';
219220
export { default as Meh } from './meh';

src/components/icons/mapPinFill.tsx

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
'use client';
2+
import React from 'react';
3+
import { IconPropsNative } from './';
4+
const MapPinFill = ({ size = 24, color, style, ...props }: IconPropsNative) => {
5+
return (
6+
<svg
7+
fill="none"
8+
stroke="currentColor"
9+
strokeLinecap="round"
10+
strokeLinejoin="round"
11+
strokeWidth="1.5"
12+
shapeRendering="geometricPrecision"
13+
viewBox="0 0 24 24"
14+
{...props}
15+
height={size}
16+
width={size}
17+
style={{ ...style, color: color }}
18+
>
19+
<path fill="currentColor" d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z" />
20+
<circle stroke="var(--ui-icon-background)" cx="12" cy="10" r="3" />
21+
</svg>
22+
);
23+
};
24+
export default MapPinFill;

0 commit comments

Comments
 (0)