Sha256: 6f9c09a204ec3687147eae4bb019e9bb763a0cb0774ef695fb800e73c9a84435
Contents?: true
Size: 670 Bytes
Versions: 12
Compression:
Stored size: 670 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class ExposurePlus1 < 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: 'M3 12h6') s.path(d: 'M6 9v6') s.path(d: 'M18 19v-14l-4 4') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems