Sha256: 4d74237e73df4530322adaad31e78b912a9d8c043d97694dddb0f71d20f90e2b
Contents?: true
Size: 697 Bytes
Versions: 3
Compression:
Stored size: 697 Bytes
Contents
# frozen_string_literal: true module Phlex module Lucide class CopyCheckIcon < 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.path(d: "m12 15 2 2 4-4") s.rect(width: "14", height: "14", x: "8", y: "8", rx: "2", ry: "2") s.path(d: "M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems