Sha256: 6ef1707df33d2a22a79d29ffd86560d52a6448952f49fa0f289b14128543a189
Contents?: true
Size: 698 Bytes
Versions: 14
Compression:
Stored size: 698 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class RouteSquare2 < 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: 'M14 5a2 2 0 0 0 -2 2v10a2 2 0 0 1 -2 2') s.path(d: 'M3 17h4v4h-4z') s.path(d: 'M17 3h4v4h-4z') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems