primevue-mirror/components/lib/toolbar/style/ToolbarStyle.d.ts

32 lines
622 B
TypeScript
Raw Normal View History

/**
*
* Toolbar is a grouping component for buttons and other content.
*
* [Live Demo](https://www.primevue.org/toolbar/)
*
* @module toolbarstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum ToolbarClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-toolbar',
2024-05-22 13:52:02 +00:00
/**
* Class name of the start element
*/
start = 'p-toolbar-start',
2024-05-22 13:52:02 +00:00
/**
* Class name of the center element
*/
center = 'p-toolbar-center',
2024-05-22 13:52:02 +00:00
/**
* Class name of the end element
*/
end = 'p-toolbar-end'
}
2023-10-02 13:15:41 +00:00
export interface ToolbarStyle extends BaseStyle {}