import { extendTheme } from '@chakra-ui/react'
|
|
import { colors } from './colors'
|
|
|
|
export const theme = extendTheme({
|
|
colors,
|
|
// edit Input defaultProps
|
|
components: {
|
|
Input: {
|
|
defaultProps: {
|
|
focusBorderColor: 'transparent'
|
|
}
|
|
}
|
|
}
|
|
})
|