/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; import { styled } from "../../internal/index.js"; /** A row of utility specimens, each a cell with code, caption and demo. */ export const LabUtilRow = styled("div", "strand-ref-util-row", "LabUtilRow"); export const LabUtilCell = styled("div", "strand-ref-util-cell", "LabUtilCell"); export const LabUtilCellCode = styled("span", "strand-ref-util-cell__code", "LabUtilCellCode"); export const LabUtilCellCaption = styled("span", "strand-ref-util-cell__caption", "LabUtilCellCaption"); export const LabUtilCellDemo = styled("div", "strand-ref-util-cell__demo", "LabUtilCellDemo"); export const LabUtilCellBlock = styled("span", "strand-ref-util-cell__block", "LabUtilCellBlock"); export type LabUtilRowProps = JSX.HTMLAttributes; export type LabUtilCellProps = JSX.HTMLAttributes; export type LabUtilCellCodeProps = JSX.HTMLAttributes; export type LabUtilCellCaptionProps = JSX.HTMLAttributes; export type LabUtilCellDemoProps = JSX.HTMLAttributes; export type LabUtilCellBlockProps = JSX.HTMLAttributes;