Sha256: a9733581c76405ad40386fd3d3e279419e5fe5e342e84f2ec0ad31002441d39d
Contents?: true
Size: 738 Bytes
Versions: 14
Compression:
Stored size: 738 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Blinds < Base def view_template 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: 'M3 3h18') s.path(d: 'M20 7H8') s.path(d: 'M20 11H8') s.path(d: 'M10 19h10') s.path(d: 'M8 15h12') s.path(d: 'M4 3v14') s.circle(cx: '4', cy: '19', r: '2') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems