mirror of
https://github.com/Radiquum/radiquum.github.io.git
synced 2025-09-05 05:55:37 +05:00
10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
export const CharacterColor = ({ color }: { color: string }) => {
|
|
return (
|
|
<div
|
|
className="bg-[var(--bg-color)] px-8 py-4 text-2xl rounded-xl border-1 border-white/5"
|
|
style={{ "--bg-color": color } as React.CSSProperties}
|
|
>
|
|
<p className="text-transparent">{color}</p>
|
|
</div>
|
|
);
|
|
};
|