Sha256: 1beeef817f22013415edd1d48fcdbcc67ddc776841c9a97bc221efa416f375c4
Contents?: true
Size: 659 Bytes
Versions: 14
Compression:
Stored size: 659 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class BrandNextjs < 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: 'M9 15v-6l7.745 10.65a9 9 0 1 1 2.255 -1.993') s.path(d: 'M15 12v-3') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems