frontend client for gemstone. decentralised workplace app
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: logo

serenity ada8935b 9471a1fa

+18
+18
src/components/icons/gmstn/GmstnLogo.tsx
··· 1 + import * as React from "react"; 2 + import type { SvgProps} from "react-native-svg"; 3 + import Svg, { G, Path } from "react-native-svg"; 4 + const SvgComponent = (props: SvgProps) => ( 5 + <Svg width={24} height={24} viewBox="0 0 6.35 6.35" {...props}> 6 + <G> 7 + <Path 8 + d="m1008.272-250.969-9.56 18.04 9.644 17.571 9.56-18.04zM1078.061-382.654l-60.264 113.709 9.647 17.572 60.264-113.707zM934.573-385.233l-9.56 18.041 63.91 116.43 9.56-18.04zM1096.942-418.28l-9.354 17.649 9.647 17.574 9.353-17.65zM914.995-420.902l-9.563 18.04 9.793 17.84 9.56-18.04zM1004.364-516.916 944.1-403.207l63.91 116.43 60.264-113.708zM1023.245-552.541l-9.356 17.65 63.912 116.43 9.354-17.65zM984.784-552.586 924.52-438.877l9.793 17.84 60.264-113.71zM1003.665-588.211l-9.356 17.65 9.793 17.84 9.355-17.65z" 9 + transform="translate(-13.961 9.995) scale(.01703)" 10 + /> 11 + <Path 12 + d="m4236.758 571.695-35.573 67.119 36.687 66.837 35.573-67.127z" 13 + transform="translate(-67.458 -9.76) scale(.01703)" 14 + /> 15 + </G> 16 + </Svg> 17 + ); 18 + export { SvgComponent as GmstnLogo };