Sha256: 442dfb71e7737088130d5c9f0a75d998a836e801a936aeca35ed1c2f6a08257a
Contents?: true
Size: 796 Bytes
Versions: 14
Compression:
Stored size: 796 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Lucide class Aperture < 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' ) do |s| s.circle(cx: '12', cy: '12', r: '10') s.path(d: 'm14.31 8 5.74 9.94') s.path(d: 'M9.69 8h11.48') s.path(d: 'm7.38 12 5.74-9.94') s.path(d: 'M9.69 16 3.95 6.06') s.path(d: 'M14.31 16H2.83') s.path(d: 'm16.62 12-5.74 9.94') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems