Sha256: 99db58d2328c6477ec8ddf8b7f6dfe188032b82bfed1e2ff29ba97f4e3c4a661
Contents?: true
Size: 631 Bytes
Versions: 24
Compression:
Stored size: 631 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class BookOpen < 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: 'M2 3h6a4 4 0 0 1 4 4v14a3 3 0 0 0-3-3H2z') s.path(d: 'M22 3h-6a4 4 0 0 0-4 4v14a3 3 0 0 1 3-3h7z') end end end end end end
Version data entries
24 entries across 24 versions & 2 rubygems