Sha256: 8a2ad135e68353ad9b79e6336878c7980f2c809c43be56d062a31dae00f2a4f8
Contents?: true
Size: 759 Bytes
Versions: 12
Compression:
Stored size: 759 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Karate < 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: '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
12 entries across 12 versions & 2 rubygems