Sha256: 0adab48f38640b6ac3b79fcfe9dc0d2438cccf48e72a4b76b30ad6cf3c251e44
Contents?: true
Size: 637 Bytes
Versions: 14
Compression:
Stored size: 637 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Checks < 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: 'M7 12l5 5l10 -10') s.path(d: 'M2 12l5 5m5 -5l5 -5') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems