Sha256: 72e99d646efee446edd3803ab23dc6f78be0dcddf4210a58cb5a02e88fff75a0
Contents?: true
Size: 814 Bytes
Versions: 12
Compression:
Stored size: 814 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandMantine < 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: 'M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0') s.path(d: 'M11 16c1.22 -.912 2 -2.36 2 -4a5.01 5.01 0 0 0 -2 -4') s.path(d: 'M14 9h-2') s.path(d: 'M14 15h-2') s.path(d: 'M10 12h.01') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems