Create Peertube and Pleroma svg icons

This commit is contained in:
Cédric FAMIBELLE-PRONZOLA
2022-01-23 21:33:56 +04:00
parent 07ae66a513
commit 275e6a923d
2 changed files with 18 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import {SvgIcon} from '@mui/material'
export default function PeertubeIcon(props) {
return (
<SvgIcon {...props}>
<path d='M12 6.545v10.91L20.727 12M3.273 12v12L12 17.455M3.273 0v12L12 6.545' />
</SvgIcon>
)
}
+9
View File
@@ -0,0 +1,9 @@
import {SvgIcon} from '@mui/material'
export default function PleromaIcon(props) {
return (
<SvgIcon {...props}>
<path d='M6.36 0A1.868 1.868 0 004.49 1.868V24h5.964V0zm7.113 0v12h4.168a1.868 1.868 0 001.868-1.868V0zm0 18.036V24h4.168a1.868 1.868 0 001.868-1.868v-4.096Z' />
</SvgIcon>
)
}