Sha256: 9c4441d0e8dd00454e6f20bfce81f577b299fcbc6e3fb529de5e1391bcc4b789
Contents?: true
Size: 757 Bytes
Versions: 14
Compression:
Stored size: 757 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BookDownload < Base def filled raise NotImplementedError end def outline svg( **attrs, 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: 'M12 20h-6a2 2 0 0 1 -2 -2v-12a2 2 0 0 1 2 -2h12v5') s.path(d: 'M13 16h-7a2 2 0 0 0 -2 2') s.path(d: 'M15 19l3 3l3 -3') s.path(d: 'M18 22v-9') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems