Sha256: 6e2cef2203dd272782e5cfa52251d49df0d5ac2b0a8fa65a9b87cdddfde97820
Contents?: true
Size: 886 Bytes
Versions: 12
Compression:
Stored size: 886 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LanguageOff < 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: 'M4 5h1m4 0h2') s.path(d: 'M9 3v2m-.508 3.517c-.814 2.655 -2.52 4.483 -4.492 4.483') s.path(d: 'M5 9c0 2.144 2.952 3.908 6.7 4') s.path(d: 'M12 20l2.463 -5.541m1.228 -2.764l.309 -.695l.8 1.8') s.path(d: 'M18 18h-5.1') s.path(d: 'M3 3l18 18') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems