Sha256: f08b8ed05d71886429db1126c7db45b680ec616f1877d901a9c5470403f4c3b2

Contents?: true

Size: 1.04 KB

Versions: 12

Compression:

Stored size: 1.04 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Cake < 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: 'M3 20h18v-8a3 3 0 0 0 -3 -3h-12a3 3 0 0 0 -3 3v8z')
            s.path(
              d:
                'M3 14.803c.312 .135 .654 .204 1 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1 -.197'
            )
            s.path(d: 'M12 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z')
          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/cake.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/cake.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/cake.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/cake.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/cake.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/cake.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/cake.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/cake.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/cake.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/cake.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/cake.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/cake.rb