12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
"use client";
|
|
|
|
import { useEffect } from "react";
|
|
|
|
export function AccentColorScript({ color }: { color: string }) {
|
|
useEffect(() => {
|
|
if (color) document.documentElement.style.setProperty("--accent", color);
|
|
}, [color]);
|
|
|
|
return null;
|
|
}
|