@chakra-ui/core
Version:
Responsive and accessible React UI components built with React and Emotion
22 lines (17 loc) • 433 B
TypeScript
import * as React from "react";
import { ITheme } from "../theme";
interface Config {
color: string;
bg: string;
borderColor: string;
placeholderColor: string;
}
type ConfigReturnType = { light: Config; dark: Config };
export type CSSResetProps = {
config?: (
theme: ITheme,
defaultConfig?: ConfigReturnType,
) => ConfigReturnType;
};
declare const CSSReset: React.FC<CSSResetProps>;
export default CSSReset;