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