Sha256: f4f566f2816d7fb1d9d235bd5cf396dc1f5f2e3493bfc69c1416e77314ceaf0f
Contents?: true
Size: 745 Bytes
Versions: 10
Compression:
Stored size: 745 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Ferry < 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: 'M3 17h14.08a3 3 0 0 0 2.5 -1.34l2.141 -2.66h-17.221z') s.path(d: 'M14.556 7.959l-.382 -1.415') s.path(d: 'M6.107 12.675l1.384 -4.675h8l2.675 4.598') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems