Sha256: af04abe8a0125fc2940fef8d169c3e770e6cc2702128a00b4d22d943336f8b9b
Contents?: true
Size: 614 Bytes
Versions: 18
Compression:
Stored size: 614 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Pill < 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.path(d: 'm10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z') s.path(d: 'm8.5 8.5 7 7') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems