Sha256: 3ee382e18dfbc57a4246788cf3210bdd37c321c300fdd9166f6055107b5cb29e

Contents?: true

Size: 741 Bytes

Versions: 26

Compression:

Stored size: 741 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Lucide
      class Dribbble < Base
        def view_template
          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.circle(cx: '12', cy: '12', r: '10')
            s.path(d: 'M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94')
            s.path(d: 'M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32')
            s.path(d: 'M8.56 2.75c4.37 6 6 9.42 8 17.72')
          end
        end
      end
    end
  end
end

Version data entries

26 entries across 26 versions & 2 rubygems

Version Path
phlex-icons-lucide-0.6.0 lib/phlex/icons/lucide/dribbble.rb
phlex-icons-0.5.0 lib/phlex/icons/lucide/dribbble.rb
phlex-icons-0.4.0 lib/phlex/icons/lucide/dribbble.rb
phlex-icons-0.3.0 lib/phlex/icons/lucide/dribbble.rb
phlex-icons-0.2.0 lib/phlex/icons/lucide/dribbble.rb
phlex-icons-0.1.0 lib/phlex/icons/lucide/dribbble.rb