a tool for shared writing and social publishing
1import { Props } from "./Props";
2
3export const BlockBlueskySmall = (props: Props) => {
4 return (
5 <svg
6 width="24"
7 height="24"
8 viewBox="0 0 24 24"
9 fill="none"
10 xmlns="http://www.w3.org/2000/svg"
11 {...props}
12 >
13 <path
14 d="M6.33526 4.21162C8.62822 5.97119 11.0945 9.53887 12.0001 11.4535C12.9056 9.53901 15.3718 5.97116 17.6649 4.21162C19.3193 2.94199 22 1.95962 22 5.08557C22 5.70987 21.6498 10.33 21.4445 11.08C20.7306 13.6878 18.1292 14.3529 15.8152 13.9503C19.86 14.654 20.8889 16.9848 18.6668 19.3156C14.4465 23.7423 12.601 18.205 12.1279 16.7861C11.9998 16.4018 12.0002 16.4018 11.8721 16.7861C11.3993 18.205 9.55378 23.7424 5.33322 19.3156C3.11103 16.9848 4.13995 14.6538 8.18483 13.9503C5.87077 14.3529 3.26934 13.6878 2.55555 11.08C2.35016 10.3299 2 5.7098 2 5.08557C2 1.95962 4.68086 2.94199 6.33526 4.21162Z"
15 fill="currentColor"
16 />
17 </svg>
18 );
19};