Sha256: 05ae8302b23cee8771e13e4f22c5d14a0660f6c7459a88cdbc6c670f071e5d72
Contents?: true
Size: 660 Bytes
Versions: 18
Compression:
Stored size: 660 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Italic < 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.line(x1: '19', x2: '10', y1: '4', y2: '4') s.line(x1: '14', x2: '5', y1: '20', y2: '20') s.line(x1: '15', x2: '9', y1: '4', y2: '20') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems