Sha256: 8e61e07b7b67f2d5905f69ade89a23bd66303bf3798a4dfbe29eb9c2eb0e5a24
Contents?: true
Size: 830 Bytes
Versions: 18
Compression:
Stored size: 830 Bytes
Contents
# frozen_string_literal: true module Phlex module Icons module Tabler class PhotoSquareRounded < 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 8h.01') s.path(d: 'M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z') s.path(d: 'M3.5 15.5l4.5 -4.5c.928 -.893 2.072 -.893 3 0l5 5') s.path(d: 'M14 14l1 -1c.928 -.893 2.072 -.893 3 0l2.5 2.5') end end end end end end
Version data entries
18 entries across 18 versions & 2 rubygems