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