Sha256: 6c78ddbbf9ff001b8a11f1b0a7a0885efa70e299812fa5e56501d873a8fd6ae7
Contents?: true
Size: 784 Bytes
Versions: 12
Compression:
Stored size: 784 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandCitymapper < Base def filled raise NotImplementedError end def outline svg( class: classes, 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 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z') s.path(d: 'M21 11a1 1 0 1 1 -1 1.013a1 1 0 0 1 1 -1v-.013z') s.path(d: 'M8 12h8') s.path(d: 'M13 9l3 3l-3 3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems