Sha256: 538b60a0510ebd7fe9a46c551fa74bfd90401623db3b0539662c77f5c49b8371

Contents?: true

Size: 1.51 KB

Versions: 12

Compression:

Stored size: 1.51 KB

Contents

# frozen_string_literal: true

# rubocop:disable Layout/LineLength
module Phlex
  module Icons
    module Tabler
      class BrandSpotify < 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:
                'M17 3.34a10 10 0 1 1 -15 8.66l.005 -.324a10 10 0 0 1 14.995 -8.336m-2.168 11.605c-1.285 -1.927 -4.354 -2.132 -6.387 -.777a1 1 0 0 0 1.11 1.664c1.195 -.797 3.014 -.675 3.613 .223a1 1 0 1 0 1.664 -1.11m1.268 -3.245c-2.469 -1.852 -5.895 -2.187 -8.608 -.589a1 1 0 0 0 1.016 1.724c1.986 -1.171 4.544 -.92 6.392 .465a1 1 0 0 0 1.2 -1.6m1.43 -3.048c-3.677 -2.298 -7.766 -2.152 -10.977 -.546a1 1 0 0 0 .894 1.788c2.635 -1.317 5.997 -1.437 9.023 .454a1 1 0 1 0 1.06 -1.696'
            )
          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: 'M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0')
            s.path(d: 'M8 11.973c2.5 -1.473 5.5 -.973 7.5 .527')
            s.path(d: 'M9 15c1.5 -1 4 -1 5 .5')
            s.path(d: 'M7 9c2 -1 6 -2 10 .5')
          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/brand_spotify.rb
phlex-icons-0.17.0 lib/phlex/icons/tabler/brand_spotify.rb
phlex-icons-tabler-0.16.0 lib/phlex/icons/tabler/brand_spotify.rb
phlex-icons-0.16.0 lib/phlex/icons/tabler/brand_spotify.rb
phlex-icons-tabler-0.15.0 lib/phlex/icons/tabler/brand_spotify.rb
phlex-icons-0.15.0 lib/phlex/icons/tabler/brand_spotify.rb
phlex-icons-tabler-0.14.0 lib/phlex/icons/tabler/brand_spotify.rb
phlex-icons-0.14.0 lib/phlex/icons/tabler/brand_spotify.rb
phlex-icons-tabler-0.13.0 lib/phlex/icons/tabler/brand_spotify.rb
phlex-icons-0.13.0 lib/phlex/icons/tabler/brand_spotify.rb
phlex-icons-0.12.0 lib/phlex/icons/tabler/brand_spotify.rb
phlex-icons-tabler-0.12.0 lib/phlex/icons/tabler/brand_spotify.rb