Sha256: ad08794de0b0f827185fb55a7ab6bd798ff475a9e8c61bc1752bf6a24ab720c8
Contents?: true
Size: 747 Bytes
Versions: 12
Compression:
Stored size: 747 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CrystalBall < 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: 'M6.73 17.018a8 8 0 1 1 10.54 0') s.path(d: 'M5 19a2 2 0 0 0 2 2h10a2 2 0 1 0 0 -4h-10a2 2 0 0 0 -2 2z') s.path(d: 'M11 7a3 3 0 0 0 -3 3') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems