Sha256: ca95ab9350b298d2dafec95fca6a0dc193c7bcab3b51979134311629056b6056
Contents?: true
Size: 892 Bytes
Versions: 14
Compression:
Stored size: 892 Bytes
Contents
# frozen_string_literal: true # rubocop:disable Layout/LineLength module Phlex module Icons module Bootstrap class CloudDownloadFill < Base def view_template svg( **attrs, xmlns: 'http://www.w3.org/2000/svg', fill: 'currentColor', viewbox: '0 0 16 16' ) do |s| s.path( fill_rule: 'evenodd', d: 'M8 0a5.53 5.53 0 0 0-3.594 1.342c-.766.66-1.321 1.52-1.464 2.383C1.266 4.095 0 5.555 0 7.318 0 9.366 1.708 11 3.781 11H7.5V5.5a.5.5 0 0 1 1 0V11h4.188C14.502 11 16 9.57 16 7.773c0-1.636-1.242-2.969-2.834-3.194C12.923 1.999 10.69 0 8 0m-.354 15.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 14.293V11h-1v3.293l-2.146-2.147a.5.5 0 0 0-.708.708z' ) end end end end end end # rubocop:enable Layout/LineLength
Version data entries
14 entries across 14 versions & 2 rubygems