Update your ATProto bio with what you're currently listening to
1const Button = ({
2 label,
3 onClick,
4 width
5}: {
6 label: string;
7 onClick: () => Promise<void>;
8 width: string;
9}) => {
10 return (
11 <button
12 className={`bg-white/90 active:bg-white hover:cursor-pointer h-full rounded-lg text-xl ${width}`}
13 onClick={onClick}
14 >
15 <span
16 style={{
17 background: "linear-gradient(to right, #9F0712, #6868B6)",
18 backgroundClip: "text",
19 WebkitBackgroundClip: "text",
20 WebkitTextFillColor: "transparent"
21 }}
22 >
23 {label}
24 </span>
25 </button>
26 );
27};
28
29export default Button;