Sha256: a8df40a8293e7e158043608c55ebddeefa4ccac51290ebefca887fb9c564d2f0
Contents?: true
Size: 724 Bytes
Versions: 14
Compression:
Stored size: 724 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LocationBolt < 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: 'M13.05 20.1l-3.05 -6.1l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.312 9.173' ) s.path(d: 'M19 16l-2 3h4l-2 3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems