Sha256: 6a3dd4db26c3ef6cade82c19603529aff0273c6ae266f6f777bf813b3767790e
Contents?: true
Size: 888 Bytes
Versions: 12
Compression:
Stored size: 888 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Sos < 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: 'M7 8h-3a1 1 0 0 0 -1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-3' ) s.path(d: 'M10 8h4v8h-4z') s.path( d: 'M17 16h3a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1h-2a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1h3' ) end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems