Sha256: ee8a5ee6818dc3b2d8bc988b6fa6d387370b3fc9da66bdb46dd49702c6185199
Contents?: true
Size: 626 Bytes
Versions: 12
Compression:
Stored size: 626 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class X < Base def filled raise NotImplementedError end def outline 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: 'M18 6l-12 12') s.path(d: 'M6 6l12 12') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems