bufferapp/ui

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

Summary

Maintainability
B
4 hrs
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 PauseIcon = createIconComponent({
  content: (
    <g>
      <g clipPath="url(#clip0_349_954)">
        <path
          fillRule="evenodd"
          d="M8 16A8 8 0 108 0a8 8 0 000 16zM5 5.5a1 1 0 012 0v5a1 1 0 11-2 0v-5zm5-1a1 1 0 00-1 1v5a1 1 0 102 0v-5a1 1 0 00-1-1z"
          clipRule="evenodd"
        />
      </g>
      <defs>
        <clipPath id="clip0_349_954">
          <path d="M0 0h16v16H0z" />
        </clipPath>
      </defs>
    </g>
  ),
})
// @ts-expect-error TS(2339) FIXME: Property 'displayName' does not exist on type '(pr... Remove this comment to see the full error message
PauseIcon.displayName = 'PauseIcon'

export default PauseIcon