Sha256: 16021701f39684747301c3a5d6c58b034adf930ae7f780aaa31b0db60c37a85b

Contents?: true

Size: 1.11 KB

Versions: 10

Compression:

Stored size: 1.11 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class Apple < 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:
                'M4 11.319c0 3.102 .444 5.319 2.222 7.978c1.351 1.797 3.156 2.247 5.08 .988c.426 -.268 .97 -.268 1.397 0c1.923 1.26 3.728 .809 5.079 -.988c1.778 -2.66 2.222 -4.876 2.222 -7.977c0 -2.661 -1.99 -5.32 -4.444 -5.32c-1.267 0 -2.41 .693 -3.22 1.44a.5 .5 0 0 1 -.672 0c-.809 -.746 -1.953 -1.44 -3.22 -1.44c-2.454 0 -4.444 2.66 -4.444 5.319'
            )
            s.path(d: 'M7 12c0 -1.47 .454 -2.34 1.5 -3')
            s.path(d: 'M12 7c0 -1.2 .867 -4 3 -4')
          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/apple.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/apple.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/apple.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/apple.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/apple.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/apple.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/apple.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/apple.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/apple.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/apple.rb