Sha256: 518389c3137d4fa2a711170967017bc59e1f3ca566dc9bef9d1d7ff42880600b
Contents?: true
Size: 752 Bytes
Versions: 14
Compression:
Stored size: 752 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Karate < 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: 'M18 4m-1 0a1 1 0 1 0 2 0a1 1 0 1 0 -2 0') s.path(d: 'M3 9l4.5 1l3 2.5') s.path(d: 'M13 21v-8l3 -5.5') s.path(d: 'M8 4.5l4 2l4 1l4 3.5l-2 3.5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems