Sha256: 4fa5b8046aae9fb5e3e444458b547198a33a2f1294120eeaf6d7b4e02fab2f7b
Contents?: true
Size: 684 Bytes
Versions: 14
Compression:
Stored size: 684 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Pocket < 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: 'M4 3h16a2 2 0 0 1 2 2v6a10 10 0 0 1-10 10A10 10 0 0 1 2 11V5a2 2 0 0 1 2-2z' ) s.polyline(points: '8 10 12 14 16 10') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems