mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
2388982f2f
* Revert "Revert "add dark mode support (#53)" (#54)"
This reverts commit 2161f4d5f1.
* switch to cssVariables: false
* bring back darkmode for DemoFlag
* fix suspense example
* fix skeleton example
8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
export function Content({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="p-4 prose lg:prose-lg mb-32 dark:prose-invert">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|