Sha256: a9b63dc6288a41238efd761d53c99109ba029d7d4e49afa0963296aadc42512a
Contents?: true
Size: 967 Bytes
Versions: 14
Compression:
Stored size: 967 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Salt < 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: 'M12 13v.01') s.path(d: 'M10 16v.01') s.path(d: 'M14 16v.01') s.path( d: 'M7.5 8h9l-.281 -2.248a2 2 0 0 0 -1.985 -1.752h-4.468a2 2 0 0 0 -1.986 1.752l-.28 2.248z' ) s.path( d: 'M7.5 8l-1.612 9.671a2 2 0 0 0 1.973 2.329h8.278a2 2 0 0 0 1.973 -2.329l-1.612 -9.671' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems