Sha256: 5694219683b294220a6abee2f8c0081bc9f4280df316a29a809098cb21b5ee61
Contents?: true
Size: 678 Bytes
Versions: 12
Compression:
Stored size: 678 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BracketsOff < 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 5v15h3') s.path(d: 'M16 4h3v11m0 4v1h-3') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems