/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; import { forwardRef } from "preact/compat"; import { cx } from "../../internal/index.js"; export interface InstrumentViewportProps extends JSX.HTMLAttributes { /** Subtle grid overlay. */ grid?: boolean; /** Page-filling cabinet (DL 9.3); the host page adds `strand-body--instrument` to body. */ fullBleed?: boolean; } /** * Recessed dark surface for instrument-style content. * * @example * */ export const InstrumentViewport = forwardRef( ({ grid = false, fullBleed = false, className = "", children, ...rest }, ref) => (
{children}
), ); InstrumentViewport.displayName = "InstrumentViewport";