13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
import { defaultConfig, createSystem, defineConfig } from "@chakra-ui/react";
|
|
|
|
const config = defineConfig({
|
|
globalCss: {
|
|
"*": {
|
|
focusRing: "none",
|
|
color: "#FFF",
|
|
},
|
|
},
|
|
});
|
|
|
|
export default createSystem(defaultConfig, config);
|