Sha256: 98078f6b8dc7ff9a313cca986bd891c5d1f04c32a49bda567ecc39af903c873e
Contents?: true
Size: 675 Bytes
Versions: 14
Compression:
Stored size: 675 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class CornerUpLeftDouble < 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: 'M19 18v-6a3 3 0 0 0 -3 -3h-7') s.path(d: 'M13 13l-4 -4l4 -4m-5 8l-4 -4l4 -4') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems