Sha256: df4575984583284352c2ba5b3a51cb0e48cdc1cae3594c917fc524de6007807b
Contents?: true
Size: 719 Bytes
Versions: 12
Compression:
Stored size: 719 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Cane < 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: 'M9 21l6.324 -11.69c.54 -.974 1.756 -4.104 -1.499 -5.762c-3.255 -1.657 -5.175 .863 -5.825 2.032' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems