/** @jsx jsx */ import { jsx, Theme } from "theme-ui" import Table from "./table" import theme from "../theme" type FontWeightProps = { fontWeights?: Theme["fontWeights"] previewText?: string } const FontWeight = ({ fontWeights = undefined, previewText = `The quick brown fox jumps over the lazy dog`, }: FontWeightProps) => (