Sha256: a979a09fb3d854920766954545d5b84bb19291e2455628b4cf1e6140206dfa93
Contents?: true
Size: 767 Bytes
Versions: 26
Compression:
Stored size: 767 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Ticket < 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 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z' ) s.path(d: 'M13 5v2') s.path(d: 'M13 17v2') s.path(d: 'M13 11v2') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems