@nexusui/components
Version:
These are custom components specially-developed for NexusUI applications. They will make your life easier by giving you out-of-the-box implementations for various high-level UI elements that you can drop directly into your application.
43 lines (42 loc) • 796 B
TypeScript
/**
* @name limitLines
* @description limit lines of text
* @param lines
*/
export declare const limitLines: (lines: number) => {
overflow: string;
textOverflow: string;
display: string;
WebkitLineClamp: string;
WebkitBoxOrient: string;
};
export declare const limitOneLine: {
overflow: string;
textOverflow: string;
whiteSpace: string;
};
export declare const responsiveMenuStyle: {
top: {
xs: number;
sm: string;
};
left: number;
width: {
xs: string;
sm: number;
};
height: {
xs: string;
sm: string;
};
maxHeight: {
xs: string;
sm: string;
};
maxWidth: string;
borderRadius: {
xs: number;
sm: number;
};
overflowY: string;
};