symbols-react 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/index.js +0 -1
- package/types/index.d.ts +0 -1
- package/src/icons/IconAdobeLogo.js +0 -32
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -5395,7 +5395,6 @@ export { IconWordpressLogo } from './icons/IconWordpressLogo';
|
|
|
5395
5395
|
export { IconWorkOsLogo } from './icons/IconWorkOsLogo';
|
|
5396
5396
|
export { IconXLogo } from './icons/IconXLogo';
|
|
5397
5397
|
export { IconYoutubeLogo } from './icons/IconYoutubeLogo';
|
|
5398
|
-
export { IconAdobeLogo } from './icons/IconAdobeLogo';
|
|
5399
5398
|
export { IconAfterEffectsLogo } from './icons/IconAfterEffectsLogo';
|
|
5400
5399
|
export { IconAirbnbLogo } from './icons/IconAirbnbLogo';
|
|
5401
5400
|
export { IconAngularLogo } from './icons/IconAngularLogo';
|
package/types/index.d.ts
CHANGED
|
@@ -5395,7 +5395,6 @@ export { IconWordpressLogo } from "./icons/IconWordpressLogo";
|
|
|
5395
5395
|
export { IconWorkOsLogo } from "./icons/IconWorkOsLogo";
|
|
5396
5396
|
export { IconXLogo } from "./icons/IconXLogo";
|
|
5397
5397
|
export { IconYoutubeLogo } from "./icons/IconYoutubeLogo";
|
|
5398
|
-
export { IconAdobeLogo } from "./icons/IconAdobeLogo";
|
|
5399
5398
|
export { IconAfterEffectsLogo } from "./icons/IconAfterEffectsLogo";
|
|
5400
5399
|
export { IconAirbnbLogo } from "./icons/IconAirbnbLogo";
|
|
5401
5400
|
export { IconAngularLogo } from "./icons/IconAngularLogo";
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
-
import React from 'react';
|
|
3
|
-
export const IconAdobeLogo = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/React.createElement("svg", _extends({
|
|
4
|
-
ref: ref,
|
|
5
|
-
width: props.width || "28",
|
|
6
|
-
height: props.height || "28",
|
|
7
|
-
viewBox: "0 0 28 28",
|
|
8
|
-
fill: props.fill || "'none' || '#000000",
|
|
9
|
-
stroke: props.stroke || "none",
|
|
10
|
-
strokeWidth: props.strokeWidth || "2",
|
|
11
|
-
strokeLinecap: props.strokeLinecap || "round",
|
|
12
|
-
strokeLinejoin: props.strokeLinejoin || "round"
|
|
13
|
-
}, props), /*#__PURE__*/React.createElement("mask", {
|
|
14
|
-
id: "mask0_22_109",
|
|
15
|
-
style: "mask-type:luminance",
|
|
16
|
-
maskUnits: "userSpaceOnUse",
|
|
17
|
-
x: "2",
|
|
18
|
-
y: "3",
|
|
19
|
-
width: "24",
|
|
20
|
-
height: "22"
|
|
21
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
22
|
-
d: "M25.9999 3.38525H2.30518V24.3467H25.9999V3.38525Z"
|
|
23
|
-
})), /*#__PURE__*/React.createElement("g", {
|
|
24
|
-
mask: "url(#mask0_22_109)"
|
|
25
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
26
|
-
d: "M17.2319 3.38525H25.9999V24.3467L17.2319 3.38525Z"
|
|
27
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
28
|
-
d: "M11.0731 3.38525H2.30518V24.3467L11.0731 3.38525Z"
|
|
29
|
-
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
-
d: "M14.1436 11.1069L19.7345 24.3476H16.0783L14.4099 20.1411H10.3276L14.1436 11.1069Z"
|
|
31
|
-
}))));
|
|
32
|
-
IconAdobeLogo.displayName = 'IconAdobeLogo';
|