Sha256: 327a9df632c5e46782a0d5977f127b6c3c192b9d1f866923fd60801c9a08d985
Contents?: true
Size: 907 Bytes
Versions: 12
Compression:
Stored size: 907 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class SunMoon < 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: 'M9.173 14.83a4 4 0 1 1 5.657 -5.657') s.path( d: 'M11.294 12.707l.174 .247a7.5 7.5 0 0 0 8.845 2.492a9 9 0 0 1 -14.671 2.914' ) s.path(d: 'M3 12h1') s.path(d: 'M12 3v1') s.path(d: 'M5.6 5.6l.7 .7') s.path(d: 'M3 21l18 -18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems