import React from 'react'; import { md, code, Example } from '@kalamazoo/docs'; export default md` ### Layers These are fixed values to use for layering elements with \`z-index\`. ${code` import { layers } from '@kalamazoo/theme'; // layers properties return a number. () =>
`} ${( )} ### Border radius When wanting to add some rounding to an elements edges, use this. ${code` import { borderRadius } from '@kalamazoo/theme'; // borderRadius returns a number. () =>
`} ### Grid size Grid unit that should be used for all sizing calculations. Refer to the [design documentation](https://atlassian.design/guidelines/product/foundations/grid) for more information. ${code` import { gridSize } from '@kalamazoo/theme'; // gridSize returns a number. () =>
`} `;