Sha256: 39a1894751d9d1c77bcae3377981075d55bcd108262d0866c3895f9b8bf66deb
Contents?: true
Size: 570 Bytes
Versions: 16
Compression:
Stored size: 570 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Bootstrap class VinylFill < Base def view_template svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', fill: 'currentColor', viewbox: '0 0 16 16' ) do |s| s.path(d: 'M8 6a2 2 0 1 0 0 4 2 2 0 0 0 0-4m0 3a1 1 0 1 1 0-2 1 1 0 0 1 0 2') s.path( d: 'M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M4 8a4 4 0 1 0 8 0 4 4 0 0 0-8 0' ) end end end end end end
Version data entries
16 entries across 16 versions & 2 rubygems