Sha256: 8dd093f6ee03d239b32e0c01a639898543583b014532858ee293204a4d0139ed
Contents?: true
Size: 774 Bytes
Versions: 12
Compression:
Stored size: 774 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BabyBottle < 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: 'M5 10h14') s.path(d: 'M12 2v2') s.path( d: 'M12 4a5 5 0 0 1 5 5v11a2 2 0 0 1 -2 2h-6a2 2 0 0 1 -2 -2v-11a5 5 0 0 1 5 -5z' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems