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