Sha256: 1ab1e5d50cb4cef0b3f5f4c02081311d74c40b7a30cd161b8922cf8d5ad0d56b
Contents?: true
Size: 789 Bytes
Versions: 12
Compression:
Stored size: 789 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Lighter < 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: 'M10 3v16a2 2 0 0 0 2 2h5a2 2 0 0 0 2 -2v-7h-12a2 2 0 0 1 -2 -2v-5a2 2 0 0 1 2 -2h3z' ) s.path(d: 'M16 4l1.465 1.638a2 2 0 1 1 -3.015 .099l1.55 -1.737z') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems