@eccenca/gui-elements
Version:
GUI elements based on other libraries, usable in React application, written in Typescript.
12 lines (11 loc) • 498 B
TypeScript
import React from "react";
export interface PropertyValueProps extends React.HTMLAttributes<HTMLElement> {
/**
* Force value to get displayed without line breaks.
* This works best if you use a string or inline element as content.
* Otherwise you may need to take care yourself about it.
*/
nowrap?: boolean;
}
export declare const PropertyValue: ({ children, className, nowrap, ...otherDdProps }: PropertyValueProps) => React.JSX.Element;
export default PropertyValue;