Sha256: b03b7b9bd2ace4b00df6433b1bd6e3ff8b4181377fecd0fc2ccfbf7c6286ec37
Contents?: true
Size: 663 Bytes
Versions: 12
Compression:
Stored size: 663 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Search < 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: 'M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0') s.path(d: 'M21 21l-6 -6') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems