Sha256: 982d2b57e276d9d5c879a9939a6274956163f59bae078b3f6e24ca58b8e37145
Contents?: true
Size: 735 Bytes
Versions: 18
Compression:
Stored size: 735 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Route2 < 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 19a2 2 0 1 0 4 0a2 2 0 0 0 -4 0') s.path(d: 'M19 7a2 2 0 1 0 0 -4a2 2 0 0 0 0 4z') s.path(d: 'M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems