Sha256: 1a5aec0630fdb58f929ed6ff17b14a5b1d4817b1046772703e028983fe509865
Contents?: true
Size: 737 Bytes
Versions: 14
Compression:
Stored size: 737 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Bootstrap class Prescription2 < 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: 'M7 6h2v2h2v2H9v2H7v-2H5V8h2z') s.path( d: 'M2 1a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v10.5a1.5 1.5 0 0 1-1.5 1.5h-7A1.5 1.5 0 0 1 3 14.5V4a1 1 0 0 1-1-1zm2 3v10.5a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5V4zM3 3h10V1H3z' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
14 entries across 14 versions & 2 rubygems