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 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const ThumbDown = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function ThumbDown(props, ref) {
return (
<Icon {...props} name="ThumbDown">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
d="M2 14.0253C2 15.0279 2.8 15.8481 3.77778 15.8481H7.12C6.59556 17.4066 6 19.0197 6 19.9494C6 20.7149 6.70222 22 8 22C9.30667 22 10 20.7149 10 19.9494C10 17.2494 13.3606 16.1862 15.5 15.3354V5.08227C15.5 5.08227 14 4.05696 11 4.05696L6.44444 4C5.46667 4 4.66667 4.82025 4.66667 5.82278C4.66667 6.19646 4.78222 6.5519 4.96889 6.83443C4.27556 7.08962 3.77778 7.76405 3.77778 8.55696C3.77778 8.93063 3.89333 9.28608 4.08 9.56861C3.38667 9.8238 2.88889 10.4982 2.88889 11.2911C2.88889 11.6648 3.00444 12.0203 3.19111 12.3028C2.49778 12.558 2 13.2324 2 14.0253Z"
fill="currentColor"
/>
<path d="M17 4V16H22V4H17Z" fill="currentColor" />
</svg>
</Icon>
)
})
ThumbDown.displayName = 'ThumbDown'
export default ThumbDown
|