Sha256: 42172380c176db843967ba2ed18e5240932f79c515bb2bc20dc89ceffe0d55a1
Contents?: true
Size: 795 Bytes
Versions: 25
Compression:
Stored size: 795 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Bootstrap class UsbPlugFill < Base def view_template svg( class: classes, xmlns: 'http://www.w3.org/2000/svg', fill: 'currentColor', viewbox: '0 0 16 16' ) do |s| s.path( d: 'M6 .5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4H6zM7 1v1h1V1zm2 0v1h1V1zM5.5 5a.5.5 0 0 0-.5.5v4.894a2 2 0 0 0 .336 1.11l.83 1.245c.544.816.834 1.774.834 2.754 0 .275.222.497.497.497h2.006a.497.497 0 0 0 .497-.497c0-.98.29-1.938.834-2.754l.83-1.245a2 2 0 0 0 .336-1.11V5.5a.5.5 0 0 0-.5-.5z' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
25 entries across 25 versions & 2 rubygems