-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathIcon.tsx
71 lines (64 loc) · 1.41 KB
/
Icon.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import React from 'react';
import { useIcons } from '../hooks/use-icons';
const LocationIcon = () => (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
strokeWidth={2}
stroke="currentColor"
className="w-6 h-6 text-black"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M15 10.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"
/>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1 1 15 0Z"
/>
</svg>
);
interface IconProps {
name?: string;
className?: string;
width?: string | number;
height?: string | number;
}
export const Icon: React.FC<IconProps> = ({
name,
className = "w-6 h-6",
width = "100%",
height = "100%"
}) => {
const icons = useIcons();
if (!name || !icons[name]) {
return <LocationIcon />;
}
if (typeof icons[name] === 'string') {
return (
<div className={className}>
<img
src={icons[name]}
alt={name}
className="w-full h-full object-contain"
width={width}
height={height}
/>
</div>
);
}
// Otherwise, render as a React component
return (
<div className={className}>
{React.createElement(icons[name], {
width,
height,
className: "w-full h-full"
})}
</div>
);
};
export default Icon;