55 lines
3.2 KiB
TypeScript
55 lines
3.2 KiB
TypeScript
export function BookIcon() {
|
|
return (
|
|
<svg width="32" height="32" viewBox="0 0 80 64" fill="none" aria-hidden="true">
|
|
<path
|
|
d="M40 56 C40 56 8 44 8 16 L8 8 L40 8 L40 56 Z"
|
|
stroke="currentColor" strokeWidth="3" strokeLinejoin="round" fill="rgba(30,24,14,0.85)"
|
|
/>
|
|
<path
|
|
d="M40 56 C40 56 72 44 72 16 L72 8 L40 8 L40 56 Z"
|
|
stroke="currentColor" strokeWidth="3" strokeLinejoin="round" fill="rgba(30,24,14,0.85)"
|
|
/>
|
|
<path d="M40 8 L40 56" stroke="currentColor" strokeWidth="2" />
|
|
<line x1="16" y1="20" x2="36" y2="20" stroke="currentColor" strokeWidth="2" strokeLinecap="round" />
|
|
<line x1="16" y1="28" x2="36" y2="28" stroke="currentColor" strokeWidth="2" strokeLinecap="round" />
|
|
<line x1="16" y1="36" x2="32" y2="36" stroke="currentColor" strokeWidth="2" strokeLinecap="round" />
|
|
<line x1="44" y1="20" x2="64" y2="20" stroke="currentColor" strokeWidth="2" strokeLinecap="round" />
|
|
<line x1="44" y1="28" x2="64" y2="28" stroke="currentColor" strokeWidth="2" strokeLinecap="round" />
|
|
<line x1="48" y1="36" x2="64" y2="36" stroke="currentColor" strokeWidth="2" strokeLinecap="round" />
|
|
<line x1="28" y1="58" x2="52" y2="58" stroke="currentColor" strokeWidth="2.5" strokeLinecap="round" />
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export function FacebookIcon() {
|
|
return (
|
|
<svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
|
|
<path d="M24 12.073C24 5.405 18.627 0 12 0S0 5.405 0 12.073C0 18.1 4.388 23.094 10.125 24v-8.437H7.078v-3.49h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.234 2.686.234v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.49h-2.796V24C19.612 23.094 24 18.1 24 12.073z" />
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export function SpotifyIcon() {
|
|
return (
|
|
<svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
|
|
<path d="M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.521 17.34c-.24.359-.66.48-1.021.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.779-.179-.899-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.479.659.301 1.02zm1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6-.12-.48.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2zm.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.419 1.56-.299.421-1.02.599-1.559.3z" />
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export function YouTubeIcon() {
|
|
return (
|
|
<svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
|
|
<path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z" />
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export function AmazonMusicIcon() {
|
|
return (
|
|
<svg width="18" height="18" viewBox="0 0 24 24" fill="currentColor" aria-hidden="true">
|
|
<path d="M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z" />
|
|
</svg>
|
|
)
|
|
}
|