p-stream/src/components/layout/Paper.tsx
mrjvs 60e6b4d851 progress, bookmarking, homepage, resuming where left of, actual media view, navigation improvements for searching
Co-authored-by: James Hawkins <jhawki2005@gmail.com>
Co-authored-by: William Oldham <wegg7250@gmail.com>
2022-02-28 00:08:20 +01:00

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>
)
}