All files / src/icons Sliders.tsx

83.33% Statements 5/6
100% Branches 0/0
0% Functions 0/1
83.33% Lines 5/6

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 49 50 51 52    1x 1x   1x                                                                                     1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Sliders = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Sliders(props, ref) {
  return (
    <Icon {...props} name="Sliders">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M15.1765 2L17.8235 2L17.8235 4.16216L21 4.16216L21 6.86486L17.8235 6.86486L17.8235 9.02703L15.1765 9.02703L15.1765 2Z"
          fill="currentColor"
        />
        <path
          d="M13.0588 4.16216L13.0588 6.86486L3 6.86486L3 4.16216L13.0588 4.16216Z"
          fill="currentColor"
        />
        <path
          d="M21 10.6486L21 13.3514L10.9412 13.3514L10.9412 10.6486L21 10.6486Z"
          fill="currentColor"
        />
        <path
          d="M3 17.1351L10.9412 17.1351L10.9412 19.8378L3 19.8378L3 17.1351Z"
          fill="currentColor"
        />
        <path
          d="M8.82353 8.48649L8.82353 15.5135L6.17647 15.5135L6.17647 13.3514L3 13.3513L3 10.6486L6.17647 10.6486L6.17647 8.48649L8.82353 8.48649Z"
          fill="currentColor"
        />
        <path
          d="M13.0588 14.973L15.7059 14.973L15.7059 17.1351L21 17.1351L21 19.8378L15.7059 19.8378L15.7059 22L13.0588 22L13.0588 14.973Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Sliders.displayName = 'Sliders'
 
export default Sliders