mcgrizz/components/Content.tsx
2023-10-04 05:43:00 -06:00

10 lines
248 B
TypeScript

import { FunctionComponent } from "preact";
export const Content: FunctionComponent = ({ children }) => {
return (
<div class="bg-smoke-200 dark:bg-smoke-900 border-4 border-licorice-800 p-8 rounded-3xl">
{children}
</div>
);
};