@accelint/design-toolkit
Version:
An open-source component library to serve as part of the entire ecosystem of UX for Accelint.
22 lines (19 loc) • 618 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { ActionBarProps } from './types.js';
import 'react';
/**
* ActionBar - Container for icon action buttons
*
* A container component that displays a collection of action buttons (typically icon-only)
* and provides consistent spacing and alignment for toolbar-style actions.
*
* @example
* <ActionBar>
* <Button><Icon><Copy/></Icon></Button>
* </ActionBar>
*/
declare function ActionBar({ className, ...rest }: ActionBarProps): react_jsx_runtime.JSX.Element;
declare namespace ActionBar {
var displayName: string;
}
export { ActionBar };