@visa/nova-react
Version:
Visa Product Design System Nova React library. Compatible with React ^19.
12 lines (11 loc) • 456 B
TypeScript
import { type ButtonProperties } from '../button';
export type PanelToggleProperties = ButtonProperties;
/**
* Button used with a panel component to hide or show the panel.
* @docs {@link https://design.visa.com/components/panel/?code_library=react | See Docs}
*/
declare const PanelToggle: {
({ className, ...remainingProps }: PanelToggleProperties): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default PanelToggle;