Sha256: 528eea837910aee1dc6354d82ca4c8493a28d997a389b678f6572145924a9cc9
Contents?: true
Size: 955 Bytes
Versions: 14
Compression:
Stored size: 955 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Template < 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: 'M4 4m0 1a1 1 0 0 1 1 -1h14a1 1 0 0 1 1 1v2a1 1 0 0 1 -1 1h-14a1 1 0 0 1 -1 -1z' ) s.path( d: 'M4 12m0 1a1 1 0 0 1 1 -1h4a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1z' ) s.path(d: 'M14 12l6 0') s.path(d: 'M14 16l6 0') s.path(d: 'M14 20l6 0') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems