Sha256: 26091659c20cce43a0ddc473aab165f9acdfb7d8214572b135c23ce1ce32e3ea
Contents?: true
Size: 804 Bytes
Versions: 14
Compression:
Stored size: 804 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Gift < 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.rect(x: '3', y: '8', width: '18', height: '4', rx: '1') s.path(d: 'M12 8v13') s.path(d: 'M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7') s.path( d: 'M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems