UNPKG

@totalsoft/rocket-ui

Version:

A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.

27 lines 1.06 kB
// Copyright (c) TotalSoft. // This source code is licensed under the MIT license. import AddIcon from '@mui/icons-material/Add'; import CloseIcon from '@mui/icons-material/Close'; import DeleteIcon from '@mui/icons-material/Delete'; import CloudDownloadIcon from '@mui/icons-material/CloudDownload'; import ArrowDownwardIcon from '@mui/icons-material/ArrowDownward'; import EditIcon from '@mui/icons-material/Edit'; import VisibilityIcon from '@mui/icons-material/Visibility'; import SaveIcon from '@mui/icons-material/Save'; import ArrowUpwardIcon from '@mui/icons-material/ArrowUpward'; import ExpandLessIcon from '@mui/icons-material/ExpandLess'; import ExpandMoreIcon from '@mui/icons-material/ExpandMore'; export const iconType = { add: AddIcon, cancel: CloseIcon, delete: DeleteIcon, download: CloudDownloadIcon, downward: ArrowDownwardIcon, edit: EditIcon, view: VisibilityIcon, save: SaveIcon, upward: ArrowUpwardIcon, expandLess: ExpandLessIcon, expandMore: ExpandMoreIcon, }; //# sourceMappingURL=types.js.map