Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | import * as React from 'react'; import cx from 'classnames'; /** * The Text Component within a Bar. */ export interface IBarTextProps { /** Passed down classname. */ className?: string; /** Make the Button small. */ isSmall?: boolean; /** Make this expand fully */ isFullWidth?: boolean; /** Button has a white outline and text, the background color is dependant on parent */ isReverse?: boolean; /** Elements Text. */ text: string; } export const BarText: React.FC<IBarTextProps> = ({ className, isFullWidth, isReverse = false, text, }) => { const combinedClass = cx({ 'panda-bar-item': true, 'flex-align': true, 'flex-1': isFullWidth, // Reverse style 'panda-bar-item-normal': !isReverse, 'panda-bar-item-reverse': isReverse, 'text-ellipsis': true, // Custom classname [className || '']: true, }); return ( <div className={combinedClass}> <span>{text}</span> </div> ); }; |