Sha256: 1bda11a71e53b97da1c5c4898ab40439cd9f841fde7e6ffc422cb25fe046fc1c

Contents?: true

Size: 390 Bytes

Versions: 25

Compression:

Stored size: 390 Bytes

Contents

# frozen_string_literal: true

module Phlex
  module Icons
    module Bootstrap
      class CircleFill < Base
        def view_template
          svg(
            class: classes,
            xmlns: 'http://www.w3.org/2000/svg',
            fill: 'currentColor',
            viewbox: '0 0 16 16'
          ) { |s| s.circle(cx: '8', cy: '8', r: '8') }
        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/circle_fill.rb
phlex-icons-0.4.0 lib/phlex/icons/bootstrap/circle_fill.rb
phlex-icons-0.3.0 lib/phlex/icons/bootstrap/circle_fill.rb
phlex-icons-0.2.0 lib/phlex/icons/bootstrap/circle_fill.rb
phlex-icons-0.1.0 lib/phlex/icons/bootstrap/circle_fill.rb