Sha256: dd85db721fbdd17f517cd7835fb024c736951533d865ad711327ae86b9a7dc8b
Contents?: true
Size: 956 Bytes
Versions: 12
Compression:
Stored size: 956 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class GripHorizontal < 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: 'M5 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M5 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M12 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M12 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M19 9m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M19 15m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems