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="M22 14.0253C22 15.0279 21.2 15.8481 20.2222 15.8481H16.88C17.4044 17.4066 18 19.0197 18 19.9494C18 20.7149 17.2978 22 16 22C14.6933 22 14 20.7149 14 19.9494C14 17.2494 10.6394 16.1862 8.5 15.3354V5.08227C8.5 5.08227 10 4.05696 13 4.05696L17.5556 4C18.5333 4 19.3333 4.82025 19.3333 5.82278C19.3333 6.19646 19.2178 6.5519 19.0311 6.83443C19.7244 7.08962 20.2222 7.76405 20.2222 8.55696C20.2222 8.93063 20.1067 9.28608 19.92 9.56861C20.6133 9.8238 21.1111 10.4982 21.1111 11.2911C21.1111 11.6648 20.9956 12.0203 20.8089 12.3028C21.5022 12.558 22 13.2324 22 14.0253Z"
fill="currentColor"
/>
<path d="M7 4V16H2V4H7Z" fill="currentColor" />
</svg>
</Icon>
)
})
ThumbDown.displayName = 'ThumbDown'
export default ThumbDown
|