bufferapp/ui

View on GitHub
src/components/Icon/Icons/PercentageDown.tsx

Summary

Maintainability
A
55 mins
Test Coverage
A
100%
/** WARNING
 * This file is automatically generated by the `yarn gen:icons` command.
 * ALL changes will be overwritten.
 */
import React from 'react'
import createIconComponent from '../utils/createIconComponent'

const PercentageDownIcon = createIconComponent({
  content: (
    <g>
      <path
        fillRule="evenodd"
        d="M3.693 3.693a1 1 0 011.414 0L11.4 9.986V6a1 1 0 112 0v7.4H6a1 1 0 110-2h3.986L3.693 5.107a1 1 0 010-1.414z"
        clipRule="evenodd"
      />
    </g>
  ),
})
// @ts-expect-error TS(2339) FIXME: Property 'displayName' does not exist on type '(pr... Remove this comment to see the full error message
PercentageDownIcon.displayName = 'PercentageDownIcon'

export default PercentageDownIcon