From 04def5c624c3eb75046669b61c2828c87e142958 Mon Sep 17 00:00:00 2001 From: Reckless_Satoshi Date: Sun, 15 Oct 2023 11:58:20 -0700 Subject: [PATCH] Add SVG icons for map pins --- frontend/src/components/Icons/LocationPin.tsx | 14 +++++++++++ .../src/components/Icons/LocationRobot.tsx | 23 +++++++++++++++++++ frontend/src/components/Icons/index.ts | 2 ++ 3 files changed, 39 insertions(+) create mode 100644 frontend/src/components/Icons/LocationPin.tsx create mode 100644 frontend/src/components/Icons/LocationRobot.tsx diff --git a/frontend/src/components/Icons/LocationPin.tsx b/frontend/src/components/Icons/LocationPin.tsx new file mode 100644 index 00000000..28f274a1 --- /dev/null +++ b/frontend/src/components/Icons/LocationPin.tsx @@ -0,0 +1,14 @@ +import React from 'react'; +import { SvgIcon, SvgIconProps } from '@mui/material'; + +const LocationPin: React.FC = (props) => { + return ( + + + + + + ); +}; + +export default LocationPin; diff --git a/frontend/src/components/Icons/LocationRobot.tsx b/frontend/src/components/Icons/LocationRobot.tsx new file mode 100644 index 00000000..11d8e07b --- /dev/null +++ b/frontend/src/components/Icons/LocationRobot.tsx @@ -0,0 +1,23 @@ +import React from 'react'; +import { SvgIcon, SvgIconProps } from '@mui/material'; + +const LocationRobot: React.FC = (props) => { + return ( + + + + + + + + + ); +}; + +export default LocationRobot; diff --git a/frontend/src/components/Icons/index.ts b/frontend/src/components/Icons/index.ts index f7a40069..828e3b42 100644 --- a/frontend/src/components/Icons/index.ts +++ b/frontend/src/components/Icons/index.ts @@ -17,6 +17,8 @@ export { default as UserNinjaIcon } from './UserNinja'; export { default as TorIcon } from './Tor'; export { default as SimplexIcon } from './Simplex'; export { default as NostrIcon } from './Nostr'; +export { default as LocationPin } from './LocationPin'; +export { default as LocationRobot } from './LocationRobot'; // Flags with props export { default as FlagWithProps } from './WorldFlags';