Sha256: cb9ae29c5c85abc1fb2ea13c41c214625ae7758569414d7fea7e9f0376f2b91b
Contents?: true
Size: 752 Bytes
Versions: 14
Compression:
Stored size: 752 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Scooter < 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: 'M18 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M6 17m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0') s.path(d: 'M8 17h5a6 6 0 0 1 5 -5v-5a2 2 0 0 0 -2 -2h-1') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems