20 lines
362 B
TypeScript
20 lines
362 B
TypeScript
|
/**
|
||
|
*
|
||
|
* StepItem is a helper component for Stepper component.
|
||
|
*
|
||
|
* [Live Demo](https://www.primevue.org/stepper/)
|
||
|
*
|
||
|
* @module stepitemstyle
|
||
|
*
|
||
|
*/
|
||
|
import { BaseStyle } from '../../base/style';
|
||
|
|
||
|
export enum StepItemClasses {
|
||
|
/**
|
||
|
* Class name of the root element
|
||
|
*/
|
||
|
root = 'p-stepitem'
|
||
|
}
|
||
|
|
||
|
export interface StepItemStyle extends BaseStyle {}
|