Sha256: 3c0c567ba5826d04f99ebbe0e6ef12feda5849f2ad9b54efe32a270a38205264
Contents?: true
Size: 621 Bytes
Versions: 26
Compression:
Stored size: 621 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Pill < 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: '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
26 entries across 26 versions & 2 rubygems