Sha256: 68fa8b53c00ef455049ff4efbb63e1b73f4e3edfae3a15dcc4f069231e24f04c
Contents?: true
Size: 697 Bytes
Versions: 12
Compression:
Stored size: 697 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Cylinder < 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: 'M12 6m-7 0a7 3 0 1 0 14 0a7 3 0 1 0 -14 0') s.path(d: 'M5 6v12c0 1.657 3.134 3 7 3s7 -1.343 7 -3v-12') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems