Sha256: 68a81252207878c77cd9dee7bdc9d7b678ff5e52535516f57faa1e8ab8343cea
Contents?: true
Size: 841 Bytes
Versions: 14
Compression:
Stored size: 841 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class MathCos < 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: 'M7 10a2 2 0 1 0 -4 0v4a2 2 0 1 0 4 0') s.path(d: 'M12 8a2 2 0 0 1 2 2v4a2 2 0 1 1 -4 0v-4a2 2 0 0 1 2 -2') s.path( d: 'M17 15c.345 .6 1.258 1 2 1a2 2 0 1 0 0 -4a2 2 0 1 1 0 -4c.746 0 1.656 .394 2 1' ) end end end end end end
Version data entries
14 entries across 14 versions & 2 rubygems