Sha256: 5d285bbefa11ba8109703c9b993f5a537c09f49ff4fe6a5482805b5aad7ecc6b
Contents?: true
Size: 768 Bytes
Versions: 10
Compression:
Stored size: 768 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Glass < 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: 'M8 21h8') s.path(d: 'M12 16v5') s.path(d: 'M17 5l1 6c0 3.012 -2.686 5 -6 5s-6 -1.988 -6 -5l1 -6') s.path(d: 'M12 5m-5 0a5 2 0 1 0 10 0a5 2 0 1 0 -10 0') end end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems