Sha256: b51dc8ff0a233b6af061c08b47f46b636ba80c2b2d7aa47f192dc697c7f8d3c9
Contents?: true
Size: 663 Bytes
Versions: 12
Compression:
Stored size: 663 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandAzure < 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 7.5l-4 9.5h4l6 -15z') s.path(d: 'M22 20l-7 -15l-3 7l4 5l-8 3z') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems