Sha256: 167a1f0e06b6ed944941d405a1a04c1bcb9ca79f7c5ccb320bd95be7343b2487
Contents?: true
Size: 784 Bytes
Versions: 14
Compression:
Stored size: 784 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Rotate3d < 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: 'M12 3a7 7 0 0 1 7 7v4l-3 -3') s.path(d: 'M22 11l-3 3') s.path(d: 'M8 15.5l-5 -3l5 -3l5 3v5.5l-5 3z') s.path(d: 'M3 12.5v5.5l5 3') s.path(d: 'M8 15.545l5 -3.03') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems