Files
zipline/src/components/icons/GlobeIcon.tsx
2023-02-18 11:19:50 -08:00

6 lines
133 B
TypeScript

import { Globe } from 'react-feather';
export default function GlobeIcon({ ...props }) {
return <Globe size={15} {...props} />;
}