bufferapp/ui

View on GitHub
src/components/Icon/Icons/Search.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 SearchIcon = createIconComponent({
  content: (
    <g>
      <path
        fillRule="evenodd"
        d="M9.5 10a3.5 3.5 0 100-7 3.5 3.5 0 000 7zm0 2a5.5 5.5 0 100-11 5.5 5.5 0 000 11z"
        clipRule="evenodd"
      />
      <path d="M5.95 9l1.414 1.414-4.243 4.243a1 1 0 01-1.414-1.414L5.95 9z" />
    </g>
  ),
})
// @ts-expect-error TS(2339) FIXME: Property 'displayName' does not exist on type '(pr... Remove this comment to see the full error message
SearchIcon.displayName = 'SearchIcon'

export default SearchIcon