Sha256: d3d838e3d7f8d69a0303cfd99d523542f764cef70b35955673991a257931a00f
Contents?: true
Size: 868 Bytes
Versions: 14
Compression:
Stored size: 868 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Aperture < 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 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0') s.path(d: 'M3.6 15h10.55') s.path(d: 'M6.551 4.938l3.26 10.034') s.path(d: 'M17.032 4.636l-8.535 6.201') s.path(d: 'M20.559 14.51l-8.535 -6.201') s.path(d: 'M12.257 20.916l3.261 -10.034') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems