Sha256: ce217ceec9c3272cb45b233fcb401b94692666ec299982baa729b4209a314545
Contents?: true
Size: 773 Bytes
Versions: 14
Compression:
Stored size: 773 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Math1Divide2 < Base def filled raise NotImplementedError end def outline 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: 'M5 12h14') s.path( d: 'M10 15h3a1 1 0 0 1 1 1v1a1 1 0 0 1 -1 1h-2a1 1 0 0 0 -1 1v1a1 1 0 0 0 1 1h3' ) s.path(d: 'M10 5l2 -2v6') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems