Sha256: 390b1eb427fd500763cb18d31d9379ee2fcc2a3378590989872e2f97861bc108

Contents?: true

Size: 1.98 KB

Versions: 12

Compression:

Stored size: 1.98 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Cherry < Base
        def filled
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'currentColor'
          ) do |s|
            s.path(
              d:
                'M16.588 5.191l.058 .045l.078 .074l.072 .084l.013 .018a.998 .998 0 0 1 .182 .727l-.022 .111l-.03 .092c-.99 2.725 -.666 5.158 .679 7.706a4 4 0 1 1 -4.613 4.152l-.005 -.2l.005 -.2a4.002 4.002 0 0 1 2.5 -3.511c-.947 -2.03 -1.342 -4.065 -1.052 -6.207c-.166 .077 -.332 .15 -.499 .218l.094 -.064c-2.243 1.47 -3.552 3.004 -3.98 4.57a4.5 4.5 0 1 1 -7.064 3.906l-.004 -.212l.005 -.212a4.5 4.5 0 0 1 5.2 -4.233c.332 -1.073 .945 -2.096 1.83 -3.069c-1.794 -.096 -3.586 -.759 -5.355 -1.986l-.268 -.19l-.051 -.04l-.046 -.04l-.044 -.044l-.04 -.046l-.04 -.05l-.032 -.047l-.035 -.06l-.053 -.11l-.038 -.116l-.023 -.117l-.005 -.042l-.005 -.118l.01 -.118l.023 -.117l.038 -.115l.03 -.066l.023 -.045l.035 -.06l.032 -.046l.04 -.051l.04 -.046l.044 -.044l.046 -.04l.05 -.04c4.018 -2.922 8.16 -2.922 12.177 0z'
            )
          end
        end

        def outline
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            viewbox: '0 0 24 24',
            fill: 'none',
            stroke: 'currentColor',
            stroke_width: '2',
            stroke_linecap: 'round',
            stroke_linejoin: 'round'
          ) do |s|
            s.path(d: 'M7.5 16.5m-3.5 0a3.5 3.5 0 1 0 7 0a3.5 3.5 0 1 0 -7 0')
            s.path(d: 'M17 18m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0')
            s.path(d: 'M9 13c.366 -2 1.866 -3.873 4.5 -5.6')
            s.path(d: 'M17 15c-1.333 -2.333 -2.333 -5.333 -1 -9')
            s.path(
              d: 'M5 6c3.667 -2.667 7.333 -2.667 11 0c-3.667 2.667 -7.333 2.667 -11 0'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
phlex-icons-tabler-0.17.0 lib/phlex/icons/tabler/cherry.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/cherry.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/cherry.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/cherry.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/cherry.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/cherry.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/cherry.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/cherry.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/cherry.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/cherry.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/cherry.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/cherry.rb