# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Lucide class SpellCheck2 < 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: 'm6 16 6-12 6 12') s.path(d: 'M8 12h8') s.path( d: 'M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1' ) end end end end end end # rubocop:enable Layout/LineLength