Sha256: 6f1aa443d2fbee21f6e4dcd0c3c0095148941ae3ff9caf10a2ee035ad6403f99
Contents?: true
Size: 775 Bytes
Versions: 12
Compression:
Stored size: 775 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LocationPause < 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: 'M13.02 20.04l-3.02 -6.04l-7 -3.5a.55 .55 0 0 1 0 -1l18 -6.5l-3.634 10.062' ) s.path(d: 'M17 17v5') s.path(d: 'M21 17v5') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems