Sha256: 830db11928da0fcc9a56aff9ff93c8724c239fe196a989ccde00f6a92dd2d6a8
Contents?: true
Size: 691 Bytes
Versions: 12
Compression:
Stored size: 691 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class AlphabetKorean < 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: 'M7 7h6c0 2.5 -1.593 8.474 -6 10') s.path(d: 'M16 5v14z') s.path(d: 'M16 12h2') end end end end end end
Version data entries
12 entries across 12 versions & 2 rubygems