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 | 107x 107x 107x 107x | import React, { FunctionComponent } from 'react'; import withIconContainer from './withIconContainer'; const IconBolt: FunctionComponent = () => ( <svg height="12" viewBox="0 0 12 12" width="12" xmlns="http://www.w3.org/2000/svg"> <path d="M0 7.502h7.5v4.5L12 4.502H4.5V0z" fill="#FFFFFF" id="mark" /> </svg> ); export default withIconContainer(IconBolt); |