Sha256: 007486700b7391720be2d706e3758ff8191c82819ed1baf18607a29accc60da8
Contents?: true
Size: 711 Bytes
Versions: 18
Compression:
Stored size: 711 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Reload < 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: 'M19.933 13.041a8 8 0 1 1 -9.925 -8.788c3.899 -1 7.935 1.007 9.425 4.747' ) s.path(d: 'M20 4v5h-5') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems