Sha256: 1b8572807ad3dca34bc05416518be2ea801bee4508916d348b92b25b97b40186
Contents?: true
Size: 718 Bytes
Versions: 16
Compression:
Stored size: 718 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Remix class ZoomOutFill < Base def view_template svg( **attrs, viewbox: '0 0 24 24', fill: 'currentColor', xmlns: 'http://www.w3.org/2000/svg' ) do |s| s.path( d: 'M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM7 10V12H15V10H7Z' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
16 entries across 16 versions & 2 rubygems