Sha256: 5ba79f7c59d273f96bdf3541d081c29e287b94af519fed35c3f1d637d9a91a24
Contents?: true
Size: 674 Bytes
Versions: 14
Compression:
Stored size: 674 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class PlaneInflight < 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: 'M15 11.085h5a2 2 0 1 1 0 4h-15l-3 -6h3l2 2h3l-2 -7h3l4 7z') s.path(d: 'M3 21h18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems