From 275e6a923d7cd1994582b8af65a6da9056af2f29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Sun, 23 Jan 2022 21:33:56 +0400 Subject: [PATCH] Create Peertube and Pleroma svg icons --- lib/icons/peertube.js | 9 +++++++++ lib/icons/pleroma.js | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 lib/icons/peertube.js create mode 100644 lib/icons/pleroma.js diff --git a/lib/icons/peertube.js b/lib/icons/peertube.js new file mode 100644 index 0000000..2cd373b --- /dev/null +++ b/lib/icons/peertube.js @@ -0,0 +1,9 @@ +import {SvgIcon} from '@mui/material' + +export default function PeertubeIcon(props) { + return ( + + + + ) +} diff --git a/lib/icons/pleroma.js b/lib/icons/pleroma.js new file mode 100644 index 0000000..32c8270 --- /dev/null +++ b/lib/icons/pleroma.js @@ -0,0 +1,9 @@ +import {SvgIcon} from '@mui/material' + +export default function PleromaIcon(props) { + return ( + + + + ) +}