bufferapp/ui

View on GitHub
src/components/Icon/Icons/HeartFilled.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 HeartFilledIcon = createIconComponent({
  content: (
    <g>
      <path
        fillRule="evenodd"
        d="M8.7 14.733a1.05 1.05 0 01-1.4 0l-.46-.409C2.72 10.668 0 8.254 0 5.302 0 2.889 1.932 1 4.4 1A4.85 4.85 0 018 2.63 4.846 4.846 0 0111.6 1C14.068 1 16 2.889 16 5.302c0 2.953-2.72 5.366-6.84 9.022l-.46.409z"
        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
HeartFilledIcon.displayName = 'HeartFilledIcon'

export default HeartFilledIcon