Sha256: 8e6c1031e376433a34b69cb51fc70982ee01feabd53b909c3d8e4b12cfa44353
Contents?: true
Size: 397 Bytes
Versions: 14
Compression:
Stored size: 397 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Bootstrap class Dot < Base def view_template svg( **attrs, 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
14 entries across 14 versions & 2 rubygems