Sha256: 646d872ee4a1c16653cd85c30ae190706ab09f475210fcf944ee184e1244ce60
Contents?: true
Size: 773 Bytes
Versions: 14
Compression:
Stored size: 773 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BedOff < 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: 'M7 7a2 2 0 1 0 2 2') s.path(d: 'M22 17v-3h-4m-4 0h-12') s.path(d: 'M2 8v9') s.path(d: 'M12 12v2h2m4 0h4v-2a3 3 0 0 0 -3 -3h-6') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems