Sha256: e2dbd8bd699dd41da9d634686c54e0b94d6a6d6c65fa0f2a106b44b3544cb7d0
Contents?: true
Size: 710 Bytes
Versions: 26
Compression:
Stored size: 710 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class TicketCheck < 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: 'm9 12 2 2 4-4') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems