Sha256: 349799bfa651d284cbc82627d42bccaec9037adf50a3d976aee4e0c6cc465d26
Contents?: true
Size: 893 Bytes
Versions: 26
Compression:
Stored size: 893 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Rotate3d < Base def view_template 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: 'M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2' ) s.path(d: 'm15.194 13.707 3.814 1.86-1.86 3.814') s.path( d: 'M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4' ) end end end end end end
Version data entries
26 entries across 26 versions & 2 rubygems