Sha256: 4aada7f9a5f446e86f4a4e80c421244073e649fb09a573a6cd0bae511b7b3a9c
Contents?: true
Size: 818 Bytes
Versions: 12
Compression:
Stored size: 818 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandInstagram < 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: 'M4 4m0 4a4 4 0 0 1 4 -4h8a4 4 0 0 1 4 4v8a4 4 0 0 1 -4 4h-8a4 4 0 0 1 -4 -4z' ) s.path(d: 'M12 12m-3 0a3 3 0 1 0 6 0a3 3 0 1 0 -6 0') s.path(d: 'M16.5 7.5l0 .01') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems