Sha256: 25ccfac90d7af04b0dcdcf235eeb6244bf9e2eb66f6ff67aed826c4d0a22a831
Contents?: true
Size: 805 Bytes
Versions: 12
Compression:
Stored size: 805 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class EyeClosed < 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: 'M21 9c-2.4 2.667 -5.4 4 -9 4c-3.6 0 -6.6 -1.333 -9 -4') s.path(d: 'M3 15l2.5 -3.8') s.path(d: 'M21 14.976l-2.492 -3.776') s.path(d: 'M9 17l.5 -4') s.path(d: 'M15 17l-.5 -4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems