Sha256: 3fd942c0df947957a74a13ffef0dbedaf5a21eae9039c3d0f931f6c0fd271058
Contents?: true
Size: 725 Bytes
Versions: 12
Compression:
Stored size: 725 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Line < 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: 'M6 18m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M18 6m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M7.5 16.5l9 -9') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems