Sha256: 48b1c92034b5eafe0fbd084475ac842669ebd570c6df90f56603c611e09ab19d
Contents?: true
Size: 837 Bytes
Versions: 14
Compression:
Stored size: 837 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class FirstAidKit < 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: 'M8 8v-2a2 2 0 0 1 2 -2h4a2 2 0 0 1 2 2v2') s.path( d: 'M4 8m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v8a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z' ) s.path(d: 'M10 14h4') s.path(d: 'M12 12v4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems