Sha256: 90ec5badf03d4042c8a8521898fda7e5a8c622e2d713462b9d3db3f05f353876
Contents?: true
Size: 750 Bytes
Versions: 12
Compression:
Stored size: 750 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Bible < Base def filled raise NotImplementedError end def outline svg( class: classes, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'none', stroke: 'currentColor', stroke_width: '2', stroke_linecap: 'round', stroke_linejoin: 'round' ) do |s| s.path(d: 'M19 4v16h-12a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12z') s.path(d: 'M19 16h-12a2 2 0 0 0 -2 2') s.path(d: 'M12 7v6') s.path(d: 'M10 9h4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems