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 45 46 47 48 | import _ from 'lodash'; import React from 'react'; import Icon, { IIconProps, propTypes as iconPropTypes } from '../Icon'; import { lucidClassNames } from '../../../util/style-helpers'; import { omitProps } from '../../../util/component-types'; const cx = lucidClassNames.bind('&-GripperVerticalIcon'); interface IGripperVerticalIconProps extends IIconProps {} export const GripperVerticalIcon = ({ className, ...passThroughs }: IGripperVerticalIconProps) => { return ( <Icon {...omitProps( passThroughs, undefined, _.keys(GripperVerticalIcon.propTypes), false )} {..._.pick(passThroughs, _.keys(iconPropTypes))} width={2} height={16} viewBox='0 0 2 16' className={cx('&', className)} > <path d='M0 .5h2M0 4h2M0 8h2M0 12h2M0 15.5h2' /> </Icon> ); }; GripperVerticalIcon._isPrivate = true; GripperVerticalIcon.displayName = 'GripperVerticalIcon'; GripperVerticalIcon.peek = { description: ` A vertical gripper icon. `, categories: ['visual design', 'icons'], extend: 'Icon', madeFrom: ['Icon'], }; GripperVerticalIcon.propTypes = iconPropTypes; GripperVerticalIcon.defaultProps = Icon.defaultProps; export default GripperVerticalIcon; |