@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.
15 lines (13 loc) • 384 B
text/typescript
import Card from './Card'
import Button from './Button'
import Divider from './Divider'
import TextField from './TextField'
import { Theme } from '@mui/material'
import { CustomComponents } from '../../types'
const componentsOverride = (theme: Theme): CustomComponents => ({
...Card(theme),
...Button(theme),
...Divider(),
...TextField()
})
export default componentsOverride