Sha256: 114aad804b05d46b25ed8f6194b4207860a849f0135d5c879586d1e59c5b951e

Contents?: true

Size: 1.52 KB

Versions: 10

Compression:

Stored size: 1.52 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Flower < Base
        def filled
          raise NotImplementedError
        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: 'M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0')
            s.path(
              d:
                'M12 2a3 3 0 0 1 3 3c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-2.664 .366l2.4 .326c1 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.09 4.098a2.968 2.968 0 0 1 -4.07 1.098c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-1 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 4.07 -1.099c.348 .203 .771 .604 1.27 1.205l1.76 1.894c-1 -2.292 -1.5 -3.625 -1.5 -4a3 3 0 0 1 3 -3z'
            )
          end
        end
      end
    end
  end
end
# rubocop:enable Layout/LineLength

Version data entries

10 entries across 10 versions & 2 rubygems

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