Sha256: 723e84ca39a95ebb56f5e4acffe73fdcc0eb40ae469e9adb2ba7cb4a506f6d78
Contents?: true
Size: 840 Bytes
Versions: 14
Compression:
Stored size: 840 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class Braille < 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: 'M15 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z') s.path(d: 'M7 5a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z') s.path(d: 'M7 19a1 1 0 1 0 2 0a1 1 0 0 0 -2 0z') s.path(d: 'M16 12h.01') s.path(d: 'M8 12h.01') s.path(d: 'M16 19h.01') end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems