your personal website on atproto - mirror blento.app

Merge branch 'main' into card-label

authored by

Florian and committed by
GitHub
6951c005 8d160aef

+15 -1
+15 -1
src/lib/cards/BigSocialCard/index.ts
··· 148 148 149 149 germ: /(?:ger\.mx)/i, 150 150 151 - tangled: /(?:tangled\.org)/i 151 + tangled: /(?:tangled\.org)/i, 152 + 153 + mail: /(?:mailto:)/i 152 154 }; 153 155 154 156 export const platformsData: Record<string, SimpleIcon> = { ··· 207 209 <rect width="24" height="24" fill="white"/> 208 210 </clipPath> 209 211 </defs> 212 + </svg>` 213 + }, 214 + 215 + mail: { 216 + slug: 'mail', 217 + path: '', 218 + title: 'Mail', 219 + hex: '0a0a0a', 220 + source: '', 221 + svg: `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"> 222 + <path d="M1.5 8.67v8.58a3 3 0 0 0 3 3h15a3 3 0 0 0 3-3V8.67l-8.928 5.493a3 3 0 0 1-3.144 0L1.5 8.67Z" /> 223 + <path d="M22.5 6.908V6.75a3 3 0 0 0-3-3h-15a3 3 0 0 0-3 3v.158l9.714 5.978a1.5 1.5 0 0 0 1.572 0L22.5 6.908Z" /> 210 224 </svg>` 211 225 }, 212 226