@react-pakistan/react-ui-collection
Version:
React UI Collection built upon React Storybook
43 lines (42 loc) • 1.01 kB
TypeScript
export interface IMenuItemProps {
/**
* Font Family property for Menu Item component
* @default PlayfairDisplay
*/
fontFamily: string;
/**
* Font Size property for Menu Item component
* @default ThemeMenuItem
*/
fontSize?: string;
/**
* Font Weight property for Menu Item component
* @default ThemeMenuItem
*/
fontWeight?: number;
/**
* Line Height proprty for Menu Item component
* @default ThemeMenuItem
*/
lineHeight?: string;
/**
* Letter Spacing property for Menu Item component
* @default ThemeMenuItem
*/
letterSpacing?: string;
/**
* Text Align property for Menu Item component
* @default ThemeMenuItem
*/
textAlign?: string;
/**
* Text Transform property for Menu Item component
* @default ThemeMenuItem
*/
textTransform?: string;
/**
* Color property for Menu Item component
* @default ThemeMenuItem
*/
color?: string;
}