Sha256: 0a247aa4a7c3d72b36c22d15683ae86fd16c5475ffc5caf8568a5958396c002c
Contents?: true
Size: 792 Bytes
Versions: 12
Compression:
Stored size: 792 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class License < 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: 'M15 21h-9a3 3 0 0 1 -3 -3v-1h10v2a2 2 0 0 0 4 0v-14a2 2 0 1 1 2 2h-2m2 -4h-11a3 3 0 0 0 -3 3v11' ) s.path(d: 'M9 7l4 0') s.path(d: 'M9 11l4 0') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems