diff --git a/src/assets/icons/Leaf.tsx b/src/assets/icons/Leaf.tsx deleted file mode 100644 index dc092b28..00000000 --- a/src/assets/icons/Leaf.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon"; -import { mdiLeaf } from "@mdi/js"; - -export default function Leaf(props: SvgIconProps) { - return ( - - - - ); -} diff --git a/src/assets/icons/index.ts b/src/assets/icons/index.ts index 2721ea47..ad903f41 100644 --- a/src/assets/icons/index.ts +++ b/src/assets/icons/index.ts @@ -88,6 +88,12 @@ export { LanguageMarkdownOutline as Markdown }; import { TableRow } from "mdi-material-ui"; export { TableRow as Row }; +import { Table } from "mdi-material-ui"; +export { Table }; + +import { Leaf } from "mdi-material-ui"; +export { Leaf }; + export * from "./AddRow"; export * from "./AddRowTop"; export * from "./ChevronDown"; diff --git a/src/components/Settings/RegionSelect.tsx b/src/components/Settings/RegionSelect.tsx index 08dccaf4..d1f7892a 100644 --- a/src/components/Settings/RegionSelect.tsx +++ b/src/components/Settings/RegionSelect.tsx @@ -2,7 +2,7 @@ import { sortBy } from "lodash-es"; import MultiSelect from "@rowy/multiselect"; import { Grid } from "@mui/material"; -import LeafIcon from "@src/assets/icons/Leaf"; +import { Leaf as LeafIcon } from "@src/assets/icons"; import { CLOUD_RUN_REGIONS } from "@src/constants/regions";