grain.social is a photo sharing platform built on atproto. grain.social
atproto photography appview
50
fork

Configure Feed

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

at f2930131d5335ecd8a8711c4d1b8701e8a692852 44 lines 773 B view raw
1export function MasonrySvg() { 2 return ( 3 <svg 4 width="24" 5 height="24" 6 viewBox="0 0 24 24" 7 xmlns="http://www.w3.org/2000/svg" 8 > 9 <rect x="2" y="2" width="8" height="8" fill="currentColor" rx="1" /> 10 <rect 11 x="12" 12 y="2" 13 width="8" 14 height="4" 15 fill="currentColor" 16 rx="1" 17 /> 18 <rect 19 x="12" 20 y="8" 21 width="8" 22 height="6" 23 fill="currentColor" 24 rx="1" 25 /> 26 <rect 27 x="2" 28 y="12" 29 width="8" 30 height="8" 31 fill="currentColor" 32 rx="1" 33 /> 34 <rect 35 x="12" 36 y="16" 37 width="8" 38 height="4" 39 fill="currentColor" 40 rx="1" 41 /> 42 </svg> 43 ); 44}