mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-24 09:07:43 +00:00
14 lines
281 B
TypeScript
14 lines
281 B
TypeScript
import { ReactNode } from "react";
|
|
|
|
export interface PaperProps {
|
|
children?: ReactNode,
|
|
className?: string,
|
|
}
|
|
|
|
export function Paper(props: PaperProps) {
|
|
return (
|
|
<div className={`bg-denim-200 rounded-xl p-12 ${props.className}`}>
|
|
{props.children}
|
|
</div>
|
|
)
|
|
}
|