Sha256: 3256d8f63dd344cf8d5addf93c4979b8abb0f5e70f84d527fb18b73ba9da6360
Contents?: true
Size: 708 Bytes
Versions: 18
Compression:
Stored size: 708 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Crane < 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: 'M6 21h6') s.path(d: 'M9 21v-18l-6 6h18') s.path(d: 'M9 3l10 6') s.path(d: 'M17 9v4a2 2 0 1 1 -2 2') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems