@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
8 lines (7 loc) • 388 B
TypeScript
import CheckboxCard from "../CheckboxCard/CheckboxCard.js";
export type SwitchCardProps = Omit<React.ComponentProps<typeof CheckboxCard>, "type" | "indeterminate" | "ref">;
/**
* Alias for `<CheckboxCard type="switch">`
*/
declare const SwitchCard: import("react").ForwardRefExoticComponent<SwitchCardProps & import("react").RefAttributes<HTMLInputElement>>;
export default SwitchCard;