fix layout of carpet roll calculator. todo: reinstate unit buttons for plywood calculator.

This commit is contained in:
Jordan
2024-08-19 07:08:54 -07:00
parent dc7f4b25a9
commit 257642a251
12 changed files with 396 additions and 297 deletions

View File

@ -14,6 +14,7 @@ const CARPET_ROLL_SELECTED_SVG =
const CarpetRollIcon = ({ selected }: { selected: boolean }) => {
const uri = selected ? CARPET_ROLL_SELECTED_SVG : CARPET_ROLL_SVG;
console.log(`Loading %s`, uri);
return <SvgUri width="2em" height="2em" uri={uri} />;
};