Sha256: fb3c8e7051a0df29b3b25fd019d37601e77c6b3d74a1e261bb37369adbd24a53
Contents?: true
Size: 1.31 KB
Versions: 2
Compression:
Stored size: 1.31 KB
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Tabler class ArrowUpSquare < Base def filled svg( class: classes, xmlns: 'http://www.w3.org/2000/svg', viewbox: '0 0 24 24', fill: 'currentColor' ) do |s| s.path( d: 'M11.852 2.011l.058 -.007l.09 -.004l.075 .003l.126 .017l.111 .03l.111 .044l.098 .052l.104 .074l.082 .073l3 3a1 1 0 1 1 -1.414 1.414l-1.293 -1.292v10.585h1a1 1 0 0 1 1 1v4a1 1 0 0 1 -1 1h-4a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h1v-10.585l-1.293 1.292a1 1 0 0 1 -1.32 .083l-.094 -.083a1 1 0 0 1 0 -1.414l3 -3q .053 -.054 .112 -.097l.11 -.071l.114 -.054l.105 -.035z' ) end 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: 'M12 17l0 -14') s.path(d: 'M15 6l-3 -3l-3 3') s.path(d: 'M10 21v-4h4v4z') end end end end end end # rubocop:enable Layout/LineLength
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
phlex-icons-tabler-0.17.0 | lib/phlex/icons/tabler/arrow_up_square.rb |
phlex-icons-0.17.0 | lib/phlex/icons/tabler/arrow_up_square.rb |