/** * Primer-specimen components — reusable foundation specimens for building a * Primer (a long-form design-system "wall text" page). Unlike the original * document-specific specimens, these are generic and prop-driven: feed them your * own ramps, swatches, type scale, spacing steps, glyphs, and so on. They live * under `components/` so they're showcased and importable like any other * design-system component. */ export type { ColorRampProps, ColorStop } from './ColorRamp' export { ColorRamp } from './ColorRamp' export type { DefEntry, DefinitionListProps } from './DefinitionList' export { DefinitionList } from './DefinitionList' export type { FontFamiliesProps, FontFamily } from './FontFamilies' export { FontFamilies } from './FontFamilies' export type { GlyphGridProps, GlyphSpec } from './GlyphGrid' export { GlyphGrid } from './GlyphGrid' export type { LayoutMockProps } from './LayoutMock' export { LayoutMock } from './LayoutMock' export type { SpaceStep, SpacingScaleProps } from './SpacingScale' export { SpacingScale } from './SpacingScale' export type { BoxSpec, SpecimenBoxRowProps } from './SpecimenBoxRow' export { SpecimenBoxRow } from './SpecimenBoxRow' export type { StatusItem, StatusListProps } from './StatusList' export { StatusList } from './StatusList' export type { Swatch, SwatchGridProps } from './SwatchGrid' export { SwatchGrid } from './SwatchGrid' export type { TypeScaleProps, TypeStep } from './TypeScale' export { TypeScale } from './TypeScale' export type { WeightSpec, WeightSpecimenProps } from './WeightSpecimen' export { WeightSpecimen } from './WeightSpecimen'