@visa/nova-react
Version:
Visa Product Design System Nova React library. Compatible with React ^19.
12 lines (11 loc) • 432 B
TypeScript
import { type LabelProperties } from '../label';
export type SwitchLabelProperties = LabelProperties;
/**
* Label to be used with switch component.
* @docs {@link https://design.visa.com/components/switch/?code_library=react | See Docs}
*/
declare const SwitchLabel: {
({ className, ...remainingProps }: SwitchLabelProperties): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default SwitchLabel;