Sha256: bf66cf265403f9a4742e40d5e64003a6ae31740772d633d8f8a5af81754ed53b

Contents?: true

Size: 404 Bytes

Versions: 25

Compression:

Stored size: 404 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Bootstrap
      class Dot < Base
        def view_template
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            fill: 'currentColor',
            viewbox: '0 0 16 16'
          ) { |s| s.path(d: 'M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3') }
        end
      end
    end
  end
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
phlex-icons-0.5.0 lib/phlex/icons/bootstrap/dot.rb
phlex-icons-0.4.0 lib/phlex/icons/bootstrap/dot.rb
phlex-icons-0.3.0 lib/phlex/icons/bootstrap/dot.rb
phlex-icons-0.2.0 lib/phlex/icons/bootstrap/dot.rb
phlex-icons-0.1.0 lib/phlex/icons/bootstrap/dot.rb