Sha256: 609e4cb569e34efa45f53768de8db59431262efbc99580b9ad89934fdf3a865b
Contents?: true
Size: 680 Bytes
Versions: 14
Compression:
Stored size: 680 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Refresh < 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: 'M20 11a8.1 8.1 0 0 0 -15.5 -2m-.5 -4v4h4') s.path(d: 'M4 13a8.1 8.1 0 0 0 15.5 2m.5 4v-4h-4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems