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 | import React from 'react'; import classNames from 'classnames'; let Strength = props => ( <span {...props} title="Description of the icon when needed" className={classNames('slds-icon-strength', props.className)} > <svg viewBox="0 0 27 7" aria-hidden="true"> <circle r="3.025" cx="3.5" cy="3.5" /> <circle r="3.025" cx="13.5" cy="3.5" /> <circle r="3.025" cx="23.5" cy="3.5" /> </svg> <span className="slds-assistive-text">Text alternative when needed</span> </span> ); export default Strength; |