grain.social is a photo sharing platform built on atproto.
at main 778 B view raw
1export function JustifiedSvg() { 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="6" fill="currentColor" rx="1" /> 10 <rect 11 x="12" 12 y="2" 13 width="10" 14 height="6" 15 fill="currentColor" 16 rx="1" 17 /> 18 <rect 19 x="2" 20 y="10" 21 width="6" 22 height="6" 23 fill="currentColor" 24 rx="1" 25 /> 26 <rect 27 x="10" 28 y="10" 29 width="12" 30 height="6" 31 fill="currentColor" 32 rx="1" 33 /> 34 <rect 35 x="2" 36 y="18" 37 width="20" 38 height="4" 39 fill="currentColor" 40 rx="1" 41 /> 42 </svg> 43 ); 44}