Paper
Questi contenuti non sono ancora disponibili nella tua lingua.
import { Paper } from "@rebasepro/ui";| Prop | Type | Required | Description |
|---|---|---|---|
children |
React.ReactNode |
yes | |
style |
React.CSSProperties |
— | |
className |
string |
— |
Example
Section titled “Example”This is the example the design-system sync renders and verifies for this component.
import { Paper, Typography } from "@rebasepro/ui";
export const Basic = () => ( <div className="p-4 w-72"> <Paper className="p-4"> <Typography variant="body2" className="font-medium">Billing details</Typography> <Typography variant="caption" color="secondary">Next invoice on Aug 1, 2026</Typography> </Paper> </div>);