Sha256: 3f3fe513ac1851070bcc9705e269c64ba326261ff51c38ea63f45761300f2da1
Contents?: true
Size: 725 Bytes
Versions: 12
Compression:
Stored size: 725 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LocationUp < 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: 'M12 18l-2 -4l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.251 9.003') s.path(d: 'M19 22v-6') s.path(d: 'M22 19l-3 -3l-3 3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems