Sha256: aed2a4fa7d2640671b6aceb048fb10f5b3f4ae1b47c47dc6d1057d28aeaa1c2f
Contents?: true
Size: 628 Bytes
Versions: 3
Compression:
Stored size: 628 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class CreditCardIcon < Phlex::Lucide::Icon def view_template svg( xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewbox: "0 0 24 24", fill: "none", stroke: "currentColor", stroke_width: "2", stroke_linecap: "round", stroke_linejoin: "round", **props ) do |s| s.rect(width: "20", height: "14", x: "2", y: "5", rx: "2") s.line(x1: "2", x2: "22", y1: "10", y2: "10") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems