Sifa professional network frontend (Next.js, React, TailwindCSS)
sifa.id/
1import type { IconWeight } from '@phosphor-icons/react';
2
3interface SubstackIconProps {
4 size?: number;
5 weight?: IconWeight;
6 className?: string;
7}
8
9/** Substack logo icon matching Phosphor Icons interface. */
10export function SubstackIcon({ size = 24, className }: SubstackIconProps) {
11 return (
12 <svg
13 xmlns="http://www.w3.org/2000/svg"
14 width={size}
15 height={size}
16 viewBox="0 0 24 24"
17 fill="currentColor"
18 className={className}
19 aria-hidden="true"
20 >
21 <path d="M22.539 8.242H1.46V5.406h21.08v2.836zM1.46 10.812V24l9.56-5.26L20.539 24V10.812H1.46zm21.08-8.648H1.46V0h21.08v2.164z" />
22 </svg>
23 );
24}