Sha256: 884a7edffeeec6bd04c0a72cd46f048b1775866d6626d1f86bb26672a1074027
Contents?: true
Size: 522 Bytes
Versions: 14
Compression:
Stored size: 522 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class LoaderCircle < Base def view_template 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' ) { |s| s.path(d: 'M21 12a9 9 0 1 1-6.219-8.56') } end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems