primevue-mirror/components/lib/textarea/style/TextareaStyle.d.ts

20 lines
354 B
TypeScript
Raw Normal View History

/**
*
* Textarea is a multi-line text input element.
*
* [Live Demo](https://www.primevue.org/textarea/)
*
* @module textareastyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum TextareaClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
2024-05-22 08:11:33 +00:00
root = 'p-textarea'
}
2023-10-02 13:15:41 +00:00
export interface TextareaStyle extends BaseStyle {}