@blueprintjs/core
Version:
Core styles & components
10 lines (9 loc) • 332 B
TypeScript
import * as React from "react";
import { type ControlCardProps } from "./controlCard";
export type SwitchCardProps = Omit<ControlCardProps, "controlKind">;
/**
* Switch Card component.
*
* @see https://blueprintjs.com/docs/#core/components/control-card.switch-card
*/
export declare const SwitchCard: React.FC<SwitchCardProps>;