@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
14 lines (12 loc) • 463 B
TypeScript
import { ButtonToggleGroupProps } from "./buttonToggleGroup.types.js";
//#region src/buttonToggleGroup/buttonToggleGroup.d.ts
/**
* Organizes layout and display of multiple buttons. Based on ButtonGroup and should be used to toggle options.
*/
declare const ButtonToggleGroup: {
(props: ButtonToggleGroupProps): import("react").JSX.Element;
displayName: string;
};
//#endregion
export { ButtonToggleGroup };
//# sourceMappingURL=buttonToggleGroup.d.ts.map