Sha256: abe31a6e1c18e16161a98a3eb617a2224e610de08dad5dc0a4ffbb6da6953829
Contents?: true
Size: 767 Bytes
Versions: 26
Compression:
Stored size: 767 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class BookImage < Base def view_template 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: 'm20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17') s.path( d: 'M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20' ) s.circle(cx: '10', cy: '8', r: '2') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems