# Spacing

Spacing scale tokens from the Actian foundations.

import TokenTable from "../../../components/TokenTable.astro";
import PageMetadata from "../../../components/PageMetadata.astro";
import source from "../../../../vendor/foundations/dist/tokens/spacing.json";

<PageMetadata
  slug="foundations.spacing"
  source="foundations/dist/tokens/spacing.json"
  schema={1}
/>

{source.description && <p>{source.description}</p>}

## Scale

{(source.blocks || []).filter((b) => b.type === "table").map((b) => (
  <TokenTable headers={b.headers} rows={b.rows} showSwatch={true} />
))}