Sha256: 4b28351c6738211609c64f34e0132c40940b04efdcf616310dde46fb1f060c9c
Contents?: true
Size: 879 Bytes
Versions: 14
Compression:
Stored size: 879 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class LanguageOff < 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: '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
14 entries across 14 versions & 2 rubygems