musikspider/components/Center.tsx

13 lines
258 B
TypeScript
Raw Normal View History

2023-04-12 14:12:20 +03:00
import { JSX } from "preact";
export default function Center(props: JSX.HTMLAttributes<HTMLDivElement>) {
return (
<div
{...props}
class={`flex items-center justify-center h-full w-full ${
props.class ?? ""
}`}
/>
);
}