Sha256: 27ce7cf5f04743f3a5d0d457922cee588e3b0c122673ca104f80eb833be78d55
Contents?: true
Size: 700 Bytes
Versions: 18
Compression:
Stored size: 700 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Bootstrap class FilePerson < 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: 'M12 1a1 1 0 0 1 1 1v10.755S12 11 8 11s-5 1.755-5 1.755V2a1 1 0 0 1 1-1zM4 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2z' ) s.path(d: 'M8 10a3 3 0 1 0 0-6 3 3 0 0 0 0 6') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
18 entries across 18 versions & 2 rubygems