UNPKG

@navinc/base-react-components

Version:
12 lines (11 loc) 576 B
/// <reference types="react" /> import { InferComponentProps } from './types'; declare const ToggleIndicator: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, { type: "checkbox"; }, "type">; declare type ToggleProps = { checked?: boolean; disabled?: boolean; } & InferComponentProps<typeof ToggleIndicator>; declare const _default: import("styled-components").StyledComponent<({ checked, disabled, ...props }: ToggleProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>; export default _default;