Sha256: 19c339fe3059ecbfd884df8060820e53398efeda8a5c2fbd12054f7c354065c8
Contents?: true
Size: 764 Bytes
Versions: 12
Compression:
Stored size: 764 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BookDownload < 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: '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
12 entries across 12 versions & 2 rubygems