Class: Phlex::Icons::Iconoir::AdobePhotoshop
- Defined in:
- lib/phlex/icons/iconoir/icons/adobe_photoshop.rb
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from Phlex::Icons::Iconoir::Base
Instance Method Details
#regular ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/phlex/icons/iconoir/icons/adobe_photoshop.rb', line 2 def regular svg( class: @class, width: @width, height: @height, viewbox: "0 0 24 24", stroke_width: @stroke_width, fill: "none", xmlns: "http://www.w3.org/2000/svg" ) do |s| s.path( d: "M21 7V17C21 19.2091 19.2091 21 17 21H7C4.79086 21 3 19.2091 3 17V7C3 4.79086 4.79086 3 7 3H17C19.2091 3 21 4.79086 21 7Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M7 16L7 12M7 12L7 8L9 8C10.1046 8 11 8.89543 11 10V10C11 11.1046 10.1046 12 9 12L7 12Z", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) s.path( d: "M17 11V11C16.6936 10.3871 16.0672 10 15.382 10H15C14.1716 10 13.5 10.6716 13.5 11.5V11.5C13.5 12.3284 14.1716 13 15 13H15.5C16.3284 13 17 13.6716 17 14.5V14.5C17 15.3284 16.3284 16 15.5 16H15.118C14.4328 16 13.8064 15.6129 13.5 15V15", stroke: "currentColor", stroke_linecap: "round", stroke_linejoin: "round" ) end end |
#solid ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/phlex/icons/iconoir/icons/adobe_photoshop.rb', line 36 def solid svg( class: @class, width: @width, height: @height, viewbox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" ) do |s| s.path( fill_rule: "evenodd", clip_rule: "evenodd", d: "M21.75 17C21.75 19.6234 19.6234 21.75 17 21.75H7C4.37665 21.75 2.25 19.6234 2.25 17V7C2.25 4.37665 4.37665 2.25 7 2.25H17C19.6234 2.25 21.75 4.37665 21.75 7V17ZM7 16.75C6.58579 16.75 6.25 16.4142 6.25 16V8C6.25 7.80109 6.32902 7.61032 6.46967 7.46967C6.61032 7.32902 6.80109 7.25 7 7.25L9 7.25C10.5188 7.25 11.75 8.48122 11.75 10C11.75 11.5188 10.5188 12.75 9 12.75H7.75V16C7.75 16.4142 7.41421 16.75 7 16.75ZM7.75 11.25H9C9.69036 11.25 10.25 10.6904 10.25 10C10.25 9.30964 9.69036 8.75 9 8.75H7.75V11.25ZM16.329 11.3354C16.5143 11.7059 16.9648 11.8561 17.3352 11.6708C17.7057 11.4856 17.8559 11.0351 17.6707 10.6646C17.2372 9.79764 16.3511 9.25 15.3818 9.25H14.9998C13.7572 9.25 12.7498 10.2574 12.7498 11.5C12.7498 12.7426 13.7572 13.75 14.9998 13.75H15.4998C15.914 13.75 16.2498 14.0858 16.2498 14.5C16.2498 14.9142 15.914 15.25 15.4998 15.25H15.1179C14.7167 15.25 14.35 15.0234 14.1707 14.6646C13.9854 14.2941 13.5349 14.1439 13.1644 14.3292C12.7939 14.5144 12.6438 14.9649 12.829 15.3354C13.2625 16.2024 14.1486 16.75 15.1179 16.75H15.4998C16.7425 16.75 17.7498 15.7426 17.7498 14.5C17.7498 13.2574 16.7425 12.25 15.4998 12.25H14.9998C14.5856 12.25 14.2498 11.9142 14.2498 11.5C14.2498 11.0858 14.5856 10.75 14.9998 10.75H15.3818C15.7829 10.75 16.1496 10.9766 16.329 11.3354Z", fill: "currentColor" ) end end |