20 lines
402 B
TypeScript
20 lines
402 B
TypeScript
/**
|
|
*
|
|
* Fluid is a layout component to make descendant components span full width of their container.
|
|
*
|
|
* [Live Demo](https://www.primevue.org/fluid/)
|
|
*
|
|
* @module fluidstyle
|
|
*
|
|
*/
|
|
import type { BaseStyle } from '@primevue/core/base/style';
|
|
|
|
export enum FluidClasses {
|
|
/**
|
|
* Class name of the root element
|
|
*/
|
|
root = 'p-fluid'
|
|
}
|
|
|
|
export interface FluidStyle extends BaseStyle {}
|