Sha256: f42bbe01cbcd508b00049349f04e75048728c37c10ca7f560efc8988e72911d0
Contents?: true
Size: 733 Bytes
Versions: 26
Compression:
Stored size: 733 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class IdCard < 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: 'M16 10h2') s.path(d: 'M16 14h2') s.path(d: 'M6.17 15a3 3 0 0 1 5.66 0') s.circle(cx: '9', cy: '11', r: '2') s.rect(x: '2', y: '5', width: '20', height: '14', rx: '2') end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems