bufferapp/ui

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

Summary

Maintainability
A
1 hr
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 ViewIcon = createIconComponent({
  content: (
    <g>
      <path
        fillRule="evenodd"
        d="M8 13.5c4.418 0 8-5.5 8-5.5s-3.582-6-8-6-8 6-8 6 3.582 5.5 8 5.5zM8 11a3 3 0 100-6 3 3 0 000 6z"
        clipRule="evenodd"
      />
      <path d="M10 8a2 2 0 11-4 0 2 2 0 014 0z" />
    </g>
  ),
})
// @ts-expect-error TS(2339) FIXME: Property 'displayName' does not exist on type '(pr... Remove this comment to see the full error message
ViewIcon.displayName = 'ViewIcon'

export default ViewIcon