Sha256: a3b35d7d117f838ca51d5490c51584fc9207c7e0dfc484abc3e82caff7477be8
Contents?: true
Size: 767 Bytes
Versions: 18
Compression:
Stored size: 767 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BabyBottle < Base def filled raise NotImplementedError end def outline 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.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
18 entries across 18 versions & 2 rubygems