diff --git a/src/components/Table/TableHeader/RowHeight.tsx b/src/components/Table/TableHeader/RowHeight.tsx index 1903cacd..f81bff43 100644 --- a/src/components/Table/TableHeader/RowHeight.tsx +++ b/src/components/Table/TableHeader/RowHeight.tsx @@ -11,6 +11,8 @@ import RowHeightIcon from "assets/icons/RowHeight"; import TableHeaderButton from "./TableHeaderButton"; import { useProjectContext } from "contexts/ProjectContext"; +const ROW_HEIGHTS = [37, 43, 65, 100, 150]; + export default function RowHeight() { const theme = useTheme(); @@ -57,11 +59,11 @@ export default function RowHeight() { id="row-height-select" > Row Height - Short - Tall - Grande - Venti - Trenta + {ROW_HEIGHTS.map((height) => ( + + {height}px + + ))} );