flockstr/components/EventIcons/LocationIcon.tsx

14 lines
425 B
TypeScript
Raw Normal View History

2023-10-23 14:14:56 -04:00
import { HiOutlineMapPin } from "react-icons/hi2";
export default function LocationIcon() {
return (
2023-11-02 16:03:21 -04:00
<div className="center h-10 w-10 shrink-0 overflow-hidden rounded-sm border bg-muted text-muted-foreground">
2023-10-23 14:14:56 -04:00
<div className="center w-full text-center">
<div className="text-center text-[14px] font-medium">
<HiOutlineMapPin className="h-5 w-5" />
</div>
</div>
</div>
);
}