Sha256: e7acbe83db5e6b1d346dfef74335468f4c9c6aef4ca7d0da1711132b701a3acd
Contents?: true
Size: 974 Bytes
Versions: 14
Compression:
Stored size: 974 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Binary < 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: 'M11 10v-5h-1m8 14v-5h-1') s.path( d: 'M15 5m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z' ) s.path( d: 'M10 14m0 .5a.5 .5 0 0 1 .5 -.5h2a.5 .5 0 0 1 .5 .5v4a.5 .5 0 0 1 -.5 .5h-2a.5 .5 0 0 1 -.5 -.5z' ) s.path(d: 'M6 10h.01m-.01 9h.01') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems