Sha256: adacee2fddf245f071762c7038f76a970b31262bce89418e4375a38a5a266624
Contents?: true
Size: 654 Bytes
Versions: 18
Compression:
Stored size: 654 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Radical < 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: 'M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21' ) end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems