@atlaskit/logo 13.9.1 → 13.10.0
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/CHANGELOG.md +6 -0
- package/dist/cjs/version.json +1 -1
- package/dist/cjs/wrapper.js +5 -5
- package/dist/es2019/version.json +1 -1
- package/dist/es2019/wrapper.js +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/esm/wrapper.js +1 -1
- package/dist/types/wrapper.d.ts +2 -2
- package/dist/types-ts4.0/wrapper.d.ts +2 -2
- package/package.json +4 -4
- package/report.api.md +534 -124
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/logo
|
|
2
2
|
|
|
3
|
+
## 13.10.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`68e771a783a`](https://bitbucket.org/atlassian/atlassian-frontend/commits/68e771a783a) - Updates `@emotion/core` to `@emotion/react`; v10 to v11. There is no expected behavior change.
|
|
8
|
+
|
|
3
9
|
## 13.9.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
package/dist/cjs/wrapper.js
CHANGED
|
@@ -15,14 +15,14 @@ var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/h
|
|
|
15
15
|
|
|
16
16
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
17
17
|
|
|
18
|
-
var
|
|
18
|
+
var _react = require("@emotion/react");
|
|
19
19
|
|
|
20
20
|
var _constants = require("./constants");
|
|
21
21
|
|
|
22
22
|
var _excluded = ["label", "svg", "size", "appearance", "iconGradientStart", "iconGradientStop", "iconColor", "textColor", "testId"];
|
|
23
23
|
var CSS_VAR_COLOR = '--logo-color';
|
|
24
24
|
var CSS_VAR_FILL = '--logo-fill';
|
|
25
|
-
var baseWrapperStyles = (0,
|
|
25
|
+
var baseWrapperStyles = (0, _react.css)({
|
|
26
26
|
display: 'inline-block',
|
|
27
27
|
position: 'relative',
|
|
28
28
|
color: "var(".concat(CSS_VAR_COLOR, ")"),
|
|
@@ -36,7 +36,7 @@ var baseWrapperStyles = (0, _core.css)({
|
|
|
36
36
|
fill: 'inherit'
|
|
37
37
|
}
|
|
38
38
|
});
|
|
39
|
-
var stopColorStyles = (0,
|
|
39
|
+
var stopColorStyles = (0, _react.css)({
|
|
40
40
|
// eslint-disable-next-line @repo/internal/styles/no-nested-styles
|
|
41
41
|
stop: {
|
|
42
42
|
stopColor: 'currentColor'
|
|
@@ -47,7 +47,7 @@ var sizeStyles = Object.entries(_constants.sizes).reduce(function (acc, _ref) {
|
|
|
47
47
|
key = _ref2[0],
|
|
48
48
|
val = _ref2[1];
|
|
49
49
|
|
|
50
|
-
acc[key] = (0,
|
|
50
|
+
acc[key] = (0, _react.css)({
|
|
51
51
|
height: "".concat(val, "px")
|
|
52
52
|
});
|
|
53
53
|
return acc;
|
|
@@ -73,7 +73,7 @@ var Wrapper = function Wrapper(_ref3) {
|
|
|
73
73
|
rest = (0, _objectWithoutProperties2.default)(_ref3, _excluded);
|
|
74
74
|
var shouldApplyStopColor = iconGradientStart === 'inherit' && iconGradientStop === 'inherit' && appearance === undefined;
|
|
75
75
|
var testId = userDefinedTestId && "".concat(userDefinedTestId, "--wrapper");
|
|
76
|
-
return (0,
|
|
76
|
+
return (0, _react.jsx)("span", (0, _extends2.default)({
|
|
77
77
|
css: [baseWrapperStyles, shouldApplyStopColor && stopColorStyles, size && sizeStyles[size]],
|
|
78
78
|
"data-testid": testId,
|
|
79
79
|
style: (_ref4 = {}, (0, _defineProperty2.default)(_ref4, CSS_VAR_COLOR, iconColor), (0, _defineProperty2.default)(_ref4, CSS_VAR_FILL, textColor), _ref4),
|
package/dist/es2019/version.json
CHANGED
package/dist/es2019/wrapper.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
|
|
3
3
|
/** @jsx jsx */
|
|
4
|
-
import { css, jsx } from '@emotion/
|
|
4
|
+
import { css, jsx } from '@emotion/react';
|
|
5
5
|
import { sizes } from './constants';
|
|
6
6
|
const CSS_VAR_COLOR = '--logo-color';
|
|
7
7
|
const CSS_VAR_FILL = '--logo-fill';
|
package/dist/esm/version.json
CHANGED
package/dist/esm/wrapper.js
CHANGED
|
@@ -5,7 +5,7 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
|
|
5
5
|
var _excluded = ["label", "svg", "size", "appearance", "iconGradientStart", "iconGradientStop", "iconColor", "textColor", "testId"];
|
|
6
6
|
|
|
7
7
|
/** @jsx jsx */
|
|
8
|
-
import { css, jsx } from '@emotion/
|
|
8
|
+
import { css, jsx } from '@emotion/react';
|
|
9
9
|
import { sizes } from './constants';
|
|
10
10
|
var CSS_VAR_COLOR = '--logo-color';
|
|
11
11
|
var CSS_VAR_FILL = '--logo-fill';
|
package/dist/types/wrapper.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/** @jsx jsx */
|
|
2
|
-
|
|
2
|
+
import { jsx } from '@emotion/react';
|
|
3
3
|
import { WrapperProps } from './constants';
|
|
4
4
|
/**
|
|
5
5
|
* __Wrapper__
|
|
6
6
|
*
|
|
7
7
|
* An internal component used by `@atlaskit/logo` to render logo SVGs with correct styles.
|
|
8
8
|
*/
|
|
9
|
-
declare const Wrapper: ({ label, svg, size, appearance, iconGradientStart, iconGradientStop, iconColor, textColor, testId: userDefinedTestId, ...rest }: WrapperProps) => JSX.Element;
|
|
9
|
+
declare const Wrapper: ({ label, svg, size, appearance, iconGradientStart, iconGradientStop, iconColor, textColor, testId: userDefinedTestId, ...rest }: WrapperProps) => jsx.JSX.Element;
|
|
10
10
|
export default Wrapper;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
/** @jsx jsx */
|
|
2
|
+
import { jsx } from '@emotion/react';
|
|
3
3
|
import { WrapperProps } from './constants';
|
|
4
4
|
/**
|
|
5
5
|
* __Wrapper__
|
|
6
6
|
*
|
|
7
7
|
* An internal component used by `@atlaskit/logo` to render logo SVGs with correct styles.
|
|
8
8
|
*/
|
|
9
|
-
declare const Wrapper: ({ label, svg, size, appearance, iconGradientStart, iconGradientStop, iconColor, textColor, testId: userDefinedTestId, ...rest }: WrapperProps) => JSX.Element;
|
|
9
|
+
declare const Wrapper: ({ label, svg, size, appearance, iconGradientStart, iconGradientStop, iconColor, textColor, testId: userDefinedTestId, ...rest }: WrapperProps) => jsx.JSX.Element;
|
|
10
10
|
export default Wrapper;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/logo",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.10.0",
|
|
4
4
|
"description": "A logo is a visual representation of a brand or product. It can be a word or an image, or a combination of both.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@atlaskit/theme": "^12.2.0",
|
|
54
54
|
"@atlaskit/tokens": "^0.10.0",
|
|
55
55
|
"@babel/runtime": "^7.0.0",
|
|
56
|
-
"@emotion/
|
|
56
|
+
"@emotion/react": "^11.7.1",
|
|
57
57
|
"react-uid": "^2.2.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
@@ -62,10 +62,10 @@
|
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@atlaskit/atlassian-navigation": "^2.2.2",
|
|
64
64
|
"@atlaskit/button": "^16.3.0",
|
|
65
|
-
"@atlaskit/code": "^14.
|
|
65
|
+
"@atlaskit/code": "^14.4.0",
|
|
66
66
|
"@atlaskit/docs": "*",
|
|
67
67
|
"@atlaskit/radio": "^5.4.0",
|
|
68
|
-
"@atlaskit/section-message": "^6.
|
|
68
|
+
"@atlaskit/section-message": "^6.3.0",
|
|
69
69
|
"@atlaskit/select": "^15.7.0",
|
|
70
70
|
"@atlaskit/ssr": "*",
|
|
71
71
|
"@atlaskit/visual-regression": "*",
|
package/report.api.md
CHANGED
|
@@ -1,164 +1,313 @@
|
|
|
1
|
-
## API Report File for "@atlaskit/logo"
|
|
1
|
+
## API Report File for "@atlaskit/logo".
|
|
2
2
|
|
|
3
|
-
> Do not edit this file.
|
|
3
|
+
> Do not edit this file. This report is auto-generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
[Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
|
|
4
6
|
|
|
5
7
|
```ts
|
|
6
8
|
/// <reference types="react" />
|
|
7
9
|
|
|
10
|
+
declare type Appearance = 'brand' | 'neutral' | 'inverse';
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* __Atlassian icon__
|
|
14
|
+
*
|
|
15
|
+
* The Atlassian icon without an accompanying wordmark.
|
|
16
|
+
*
|
|
17
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
18
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
19
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
20
|
+
*/
|
|
8
21
|
export declare const AtlassianIcon: ({
|
|
22
|
+
appearance,
|
|
23
|
+
label,
|
|
24
|
+
size,
|
|
9
25
|
iconColor,
|
|
10
26
|
iconGradientStart,
|
|
11
27
|
iconGradientStop,
|
|
12
|
-
label,
|
|
13
|
-
size,
|
|
14
28
|
textColor,
|
|
15
29
|
testId,
|
|
16
30
|
}: LogoProps) => JSX.Element;
|
|
17
31
|
|
|
32
|
+
/**
|
|
33
|
+
* __Atlassian logo__
|
|
34
|
+
*
|
|
35
|
+
* The Atlassian logo with both the wordmark and the icon combined.
|
|
36
|
+
*
|
|
37
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
38
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
39
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
40
|
+
*/
|
|
18
41
|
export declare const AtlassianLogo: ({
|
|
19
|
-
|
|
20
|
-
iconGradientStart,
|
|
21
|
-
iconGradientStop,
|
|
42
|
+
appearance,
|
|
22
43
|
label,
|
|
23
44
|
size,
|
|
24
45
|
testId,
|
|
46
|
+
iconColor,
|
|
47
|
+
iconGradientStart,
|
|
48
|
+
iconGradientStop,
|
|
25
49
|
textColor,
|
|
26
50
|
}: LogoProps) => JSX.Element;
|
|
27
51
|
|
|
52
|
+
/**
|
|
53
|
+
* __Atlassian start logo__
|
|
54
|
+
*
|
|
55
|
+
* The Atlassian Start logo with both the wordmark and the icon combined.
|
|
56
|
+
*
|
|
57
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
58
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
59
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
60
|
+
*/
|
|
28
61
|
export declare const AtlassianStartLogo: ({
|
|
29
|
-
|
|
30
|
-
iconGradientStart,
|
|
31
|
-
iconGradientStop,
|
|
62
|
+
appearance,
|
|
32
63
|
label,
|
|
33
64
|
size,
|
|
34
65
|
testId,
|
|
66
|
+
iconColor,
|
|
67
|
+
iconGradientStart,
|
|
68
|
+
iconGradientStop,
|
|
35
69
|
textColor,
|
|
36
70
|
}: LogoProps) => JSX.Element;
|
|
37
71
|
|
|
72
|
+
/**
|
|
73
|
+
* __Atlassian wordmark__
|
|
74
|
+
*
|
|
75
|
+
* The Atlassian brand name styled as a logo, without an accompanying icon.
|
|
76
|
+
*
|
|
77
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
78
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
79
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
80
|
+
*/
|
|
38
81
|
export declare const AtlassianWordmark: ({
|
|
39
|
-
|
|
40
|
-
iconGradientStart,
|
|
41
|
-
iconGradientStop,
|
|
82
|
+
appearance,
|
|
42
83
|
label,
|
|
43
84
|
size,
|
|
44
85
|
testId,
|
|
45
86
|
textColor,
|
|
46
87
|
}: LogoProps) => JSX.Element;
|
|
47
88
|
|
|
89
|
+
/**
|
|
90
|
+
* __Bitbucket icon__
|
|
91
|
+
*
|
|
92
|
+
* The Bitbucket icon without an accompanying wordmark.
|
|
93
|
+
*
|
|
94
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
95
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
96
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
97
|
+
*/
|
|
48
98
|
export declare const BitbucketIcon: ({
|
|
49
|
-
|
|
50
|
-
iconGradientStart,
|
|
51
|
-
iconGradientStop,
|
|
99
|
+
appearance,
|
|
52
100
|
label,
|
|
53
101
|
size,
|
|
54
102
|
testId,
|
|
103
|
+
iconColor,
|
|
104
|
+
iconGradientStart,
|
|
105
|
+
iconGradientStop,
|
|
55
106
|
textColor,
|
|
56
107
|
}: LogoProps) => JSX.Element;
|
|
57
108
|
|
|
109
|
+
/**
|
|
110
|
+
* __Bitbucket logo__
|
|
111
|
+
*
|
|
112
|
+
* The Bitbucket logo with both the wordmark and the icon combined.
|
|
113
|
+
*
|
|
114
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
115
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
116
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
117
|
+
*/
|
|
58
118
|
export declare const BitbucketLogo: ({
|
|
59
|
-
|
|
60
|
-
iconGradientStart,
|
|
61
|
-
iconGradientStop,
|
|
119
|
+
appearance,
|
|
62
120
|
label,
|
|
63
121
|
size,
|
|
64
122
|
testId,
|
|
123
|
+
iconColor,
|
|
124
|
+
iconGradientStart,
|
|
125
|
+
iconGradientStop,
|
|
65
126
|
textColor,
|
|
66
127
|
}: LogoProps) => JSX.Element;
|
|
67
128
|
|
|
129
|
+
/**
|
|
130
|
+
* __Bitbucket wordmark__
|
|
131
|
+
*
|
|
132
|
+
* The Bitbucket brand/product name styled as a logo, without an accompanying icon.
|
|
133
|
+
*
|
|
134
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
135
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
136
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
137
|
+
*/
|
|
68
138
|
export declare const BitbucketWordmark: ({
|
|
69
|
-
|
|
70
|
-
iconGradientStart,
|
|
71
|
-
iconGradientStop,
|
|
139
|
+
appearance,
|
|
72
140
|
label,
|
|
73
141
|
size,
|
|
74
142
|
testId,
|
|
75
143
|
textColor,
|
|
76
144
|
}: LogoProps) => JSX.Element;
|
|
77
145
|
|
|
146
|
+
/**
|
|
147
|
+
* __Compass icon__
|
|
148
|
+
*
|
|
149
|
+
* The Compass icon without an accompanying wordmark.
|
|
150
|
+
*
|
|
151
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
152
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
153
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
154
|
+
*/
|
|
78
155
|
export declare const CompassIcon: ({
|
|
79
|
-
|
|
80
|
-
iconGradientStart,
|
|
81
|
-
iconGradientStop,
|
|
156
|
+
appearance,
|
|
82
157
|
label,
|
|
83
158
|
size,
|
|
84
159
|
testId,
|
|
160
|
+
iconColor,
|
|
161
|
+
iconGradientStart,
|
|
162
|
+
iconGradientStop,
|
|
85
163
|
textColor,
|
|
86
164
|
}: LogoProps) => JSX.Element;
|
|
87
165
|
|
|
166
|
+
/**
|
|
167
|
+
* __Compass logo__
|
|
168
|
+
*
|
|
169
|
+
* The Compass logo with both the wordmark and the icon combined.
|
|
170
|
+
*
|
|
171
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
172
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
173
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
174
|
+
*/
|
|
88
175
|
export declare const CompassLogo: ({
|
|
89
|
-
|
|
90
|
-
iconGradientStart,
|
|
91
|
-
iconGradientStop,
|
|
176
|
+
appearance,
|
|
92
177
|
label,
|
|
93
178
|
size,
|
|
94
179
|
testId,
|
|
180
|
+
iconColor,
|
|
181
|
+
iconGradientStart,
|
|
182
|
+
iconGradientStop,
|
|
95
183
|
textColor,
|
|
96
184
|
}: LogoProps) => JSX.Element;
|
|
97
185
|
|
|
186
|
+
/**
|
|
187
|
+
* __Compass wordmark__
|
|
188
|
+
*
|
|
189
|
+
* The Compass brand/product name styled as a logo, without an accompanying icon.
|
|
190
|
+
*
|
|
191
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
192
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
193
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
194
|
+
*/
|
|
98
195
|
export declare const CompassWordmark: ({
|
|
99
|
-
|
|
100
|
-
iconGradientStart,
|
|
101
|
-
iconGradientStop,
|
|
196
|
+
appearance,
|
|
102
197
|
label,
|
|
103
198
|
size,
|
|
104
199
|
testId,
|
|
105
200
|
textColor,
|
|
106
201
|
}: LogoProps) => JSX.Element;
|
|
107
202
|
|
|
203
|
+
/**
|
|
204
|
+
* __Confluence icon__
|
|
205
|
+
*
|
|
206
|
+
* The Confluence icon without an accompanying wordmark.
|
|
207
|
+
*
|
|
208
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
209
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
210
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
211
|
+
*/
|
|
108
212
|
export declare const ConfluenceIcon: ({
|
|
109
|
-
|
|
110
|
-
iconGradientStart,
|
|
111
|
-
iconGradientStop,
|
|
213
|
+
appearance,
|
|
112
214
|
label,
|
|
113
215
|
size,
|
|
114
216
|
testId,
|
|
217
|
+
iconColor,
|
|
218
|
+
iconGradientStart,
|
|
219
|
+
iconGradientStop,
|
|
115
220
|
textColor,
|
|
116
221
|
}: LogoProps) => JSX.Element;
|
|
117
222
|
|
|
223
|
+
/**
|
|
224
|
+
* __Confluence logo__
|
|
225
|
+
*
|
|
226
|
+
* The Confluence logo with both the wordmark and the icon combined.
|
|
227
|
+
*
|
|
228
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
229
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
230
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
231
|
+
*/
|
|
118
232
|
export declare const ConfluenceLogo: ({
|
|
119
|
-
|
|
120
|
-
iconGradientStart,
|
|
121
|
-
iconGradientStop,
|
|
233
|
+
appearance,
|
|
122
234
|
label,
|
|
123
235
|
size,
|
|
124
236
|
testId,
|
|
237
|
+
iconColor,
|
|
238
|
+
iconGradientStart,
|
|
239
|
+
iconGradientStop,
|
|
125
240
|
textColor,
|
|
126
241
|
}: LogoProps) => JSX.Element;
|
|
127
242
|
|
|
243
|
+
/**
|
|
244
|
+
* __Confluence wordmark__
|
|
245
|
+
*
|
|
246
|
+
* The Confluence brand/product name styled as a logo, without an accompanying icon.
|
|
247
|
+
*
|
|
248
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
249
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
250
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
251
|
+
*/
|
|
128
252
|
export declare const ConfluenceWordmark: ({
|
|
129
|
-
|
|
130
|
-
iconGradientStart,
|
|
131
|
-
iconGradientStop,
|
|
253
|
+
appearance,
|
|
132
254
|
label,
|
|
133
255
|
size,
|
|
134
256
|
testId,
|
|
135
257
|
textColor,
|
|
136
258
|
}: LogoProps) => JSX.Element;
|
|
137
259
|
|
|
260
|
+
/**
|
|
261
|
+
* __Halp icon__
|
|
262
|
+
*
|
|
263
|
+
* The Halp icon without an accompanying wordmark.
|
|
264
|
+
*
|
|
265
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
266
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
267
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
268
|
+
*/
|
|
138
269
|
export declare const HalpIcon: ({
|
|
139
|
-
|
|
140
|
-
iconGradientStart,
|
|
141
|
-
iconGradientStop,
|
|
270
|
+
appearance,
|
|
142
271
|
label,
|
|
143
272
|
size,
|
|
144
273
|
testId,
|
|
145
274
|
textColor,
|
|
146
|
-
}: LogoProps) => JSX.Element;
|
|
147
|
-
|
|
148
|
-
export declare const HalpLogo: ({
|
|
149
275
|
iconColor,
|
|
150
276
|
iconGradientStart,
|
|
151
277
|
iconGradientStop,
|
|
278
|
+
}: LogoProps) => JSX.Element;
|
|
279
|
+
|
|
280
|
+
/**
|
|
281
|
+
* __Halp logo__
|
|
282
|
+
*
|
|
283
|
+
* The Halp logo with both the wordmark and the icon combined.
|
|
284
|
+
*
|
|
285
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
286
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
287
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
288
|
+
*/
|
|
289
|
+
export declare const HalpLogo: ({
|
|
290
|
+
appearance,
|
|
152
291
|
label,
|
|
153
292
|
size,
|
|
154
293
|
testId,
|
|
294
|
+
iconColor,
|
|
295
|
+
iconGradientStart,
|
|
296
|
+
iconGradientStop,
|
|
155
297
|
textColor,
|
|
156
298
|
}: LogoProps) => JSX.Element;
|
|
157
299
|
|
|
300
|
+
/**
|
|
301
|
+
* __Halp wordmark__
|
|
302
|
+
*
|
|
303
|
+
* The Halp brand/product name styled as a logo, without an accompanying icon.
|
|
304
|
+
*
|
|
305
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
306
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
307
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
308
|
+
*/
|
|
158
309
|
export declare const HalpWordmark: ({
|
|
159
|
-
|
|
160
|
-
iconGradientStart,
|
|
161
|
-
iconGradientStop,
|
|
310
|
+
appearance,
|
|
162
311
|
label,
|
|
163
312
|
size,
|
|
164
313
|
testId,
|
|
@@ -169,12 +318,12 @@ export declare const HalpWordmark: ({
|
|
|
169
318
|
* @deprecated HipchatIcon will be removed from @atlaskit/logo in the next major release.
|
|
170
319
|
*/
|
|
171
320
|
export declare const HipchatIcon: ({
|
|
172
|
-
iconColor,
|
|
173
|
-
iconGradientStart,
|
|
174
|
-
iconGradientStop,
|
|
175
321
|
label,
|
|
176
322
|
size,
|
|
177
323
|
testId,
|
|
324
|
+
iconColor,
|
|
325
|
+
iconGradientStart,
|
|
326
|
+
iconGradientStop,
|
|
178
327
|
textColor,
|
|
179
328
|
}: LogoProps) => JSX.Element;
|
|
180
329
|
|
|
@@ -204,6 +353,63 @@ export declare const HipchatWordmark: ({
|
|
|
204
353
|
textColor,
|
|
205
354
|
}: LogoProps) => JSX.Element;
|
|
206
355
|
|
|
356
|
+
/**
|
|
357
|
+
* __Jira Align icon__
|
|
358
|
+
*
|
|
359
|
+
* The Jira Align icon without an accompanying wordmark.
|
|
360
|
+
*
|
|
361
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
362
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
363
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
364
|
+
*/
|
|
365
|
+
export declare const JiraAlignIcon: ({
|
|
366
|
+
appearance,
|
|
367
|
+
label,
|
|
368
|
+
size,
|
|
369
|
+
testId,
|
|
370
|
+
textColor,
|
|
371
|
+
iconColor,
|
|
372
|
+
iconGradientStart,
|
|
373
|
+
iconGradientStop,
|
|
374
|
+
}: LogoProps) => JSX.Element;
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* __Jira Align logo__
|
|
378
|
+
*
|
|
379
|
+
* The Jira Align logo with both the wordmark and the icon combined.
|
|
380
|
+
*
|
|
381
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
382
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
383
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
384
|
+
*/
|
|
385
|
+
export declare const JiraAlignLogo: ({
|
|
386
|
+
appearance,
|
|
387
|
+
label,
|
|
388
|
+
size,
|
|
389
|
+
testId,
|
|
390
|
+
iconColor,
|
|
391
|
+
iconGradientStart,
|
|
392
|
+
iconGradientStop,
|
|
393
|
+
textColor,
|
|
394
|
+
}: LogoProps) => JSX.Element;
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* __Jira Align wordmark__
|
|
398
|
+
*
|
|
399
|
+
* The Jira Align brand/product name styled as a logo, without an accompanying icon.
|
|
400
|
+
*
|
|
401
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
402
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
403
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
404
|
+
*/
|
|
405
|
+
export declare const JiraAlignWordmark: ({
|
|
406
|
+
appearance,
|
|
407
|
+
label,
|
|
408
|
+
size,
|
|
409
|
+
testId,
|
|
410
|
+
textColor,
|
|
411
|
+
}: LogoProps) => JSX.Element;
|
|
412
|
+
|
|
207
413
|
/**
|
|
208
414
|
* @deprecated JiraCoreIcon will be removed from @atlaskit/logo in the next major release. Please use JiraWorkManagementIcon instead.
|
|
209
415
|
*/
|
|
@@ -243,23 +449,43 @@ export declare const JiraCoreWordmark: ({
|
|
|
243
449
|
textColor,
|
|
244
450
|
}: LogoProps) => JSX.Element;
|
|
245
451
|
|
|
452
|
+
/**
|
|
453
|
+
* __Jira icon__
|
|
454
|
+
*
|
|
455
|
+
* The Jira icon without an accompanying wordmark.
|
|
456
|
+
*
|
|
457
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
458
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
459
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
460
|
+
*/
|
|
246
461
|
export declare const JiraIcon: ({
|
|
247
|
-
|
|
248
|
-
iconGradientStart,
|
|
249
|
-
iconGradientStop,
|
|
462
|
+
appearance,
|
|
250
463
|
label,
|
|
251
464
|
size,
|
|
252
465
|
testId,
|
|
253
466
|
textColor,
|
|
254
|
-
}: LogoProps) => JSX.Element;
|
|
255
|
-
|
|
256
|
-
export declare const JiraLogo: ({
|
|
257
467
|
iconColor,
|
|
258
468
|
iconGradientStart,
|
|
259
469
|
iconGradientStop,
|
|
470
|
+
}: LogoProps) => JSX.Element;
|
|
471
|
+
|
|
472
|
+
/**
|
|
473
|
+
* __Jira logo__
|
|
474
|
+
*
|
|
475
|
+
* The Jira logo with both the wordmark and the icon combined.
|
|
476
|
+
*
|
|
477
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
478
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
479
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
480
|
+
*/
|
|
481
|
+
export declare const JiraLogo: ({
|
|
482
|
+
appearance,
|
|
260
483
|
label,
|
|
261
484
|
size,
|
|
262
485
|
testId,
|
|
486
|
+
iconColor,
|
|
487
|
+
iconGradientStart,
|
|
488
|
+
iconGradientStop,
|
|
263
489
|
textColor,
|
|
264
490
|
}: LogoProps) => JSX.Element;
|
|
265
491
|
|
|
@@ -302,103 +528,197 @@ export declare const JiraServiceDeskWordmark: ({
|
|
|
302
528
|
textColor,
|
|
303
529
|
}: LogoProps) => JSX.Element;
|
|
304
530
|
|
|
531
|
+
/**
|
|
532
|
+
* __Jira Service Management icon__
|
|
533
|
+
*
|
|
534
|
+
* The Jira Service Management icon without an accompanying wordmark.
|
|
535
|
+
*
|
|
536
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
537
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
538
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
539
|
+
*/
|
|
305
540
|
export declare const JiraServiceManagementIcon: ({
|
|
306
|
-
|
|
307
|
-
iconGradientStart,
|
|
308
|
-
iconGradientStop,
|
|
541
|
+
appearance,
|
|
309
542
|
label,
|
|
310
543
|
size,
|
|
311
544
|
testId,
|
|
545
|
+
iconColor,
|
|
546
|
+
iconGradientStart,
|
|
547
|
+
iconGradientStop,
|
|
312
548
|
textColor,
|
|
313
549
|
}: LogoProps) => JSX.Element;
|
|
314
550
|
|
|
551
|
+
/**
|
|
552
|
+
* __Jira Service Management logo__
|
|
553
|
+
*
|
|
554
|
+
* The Jira Service Management logo with both the wordmark and the icon combined.
|
|
555
|
+
*
|
|
556
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
557
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
558
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
559
|
+
*/
|
|
315
560
|
export declare const JiraServiceManagementLogo: ({
|
|
316
|
-
|
|
317
|
-
iconGradientStart,
|
|
318
|
-
iconGradientStop,
|
|
561
|
+
appearance,
|
|
319
562
|
label,
|
|
320
563
|
size,
|
|
321
564
|
testId,
|
|
565
|
+
iconColor,
|
|
566
|
+
iconGradientStart,
|
|
567
|
+
iconGradientStop,
|
|
322
568
|
textColor,
|
|
323
569
|
}: LogoProps) => JSX.Element;
|
|
324
570
|
|
|
571
|
+
/**
|
|
572
|
+
* __Jira Service Management wordmark__
|
|
573
|
+
*
|
|
574
|
+
* The Jira Service Management brand/product name styled as a logo, without an accompanying icon.
|
|
575
|
+
*
|
|
576
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
577
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
578
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
579
|
+
*/
|
|
325
580
|
export declare const JiraServiceManagementWordmark: ({
|
|
326
|
-
|
|
327
|
-
iconGradientStart,
|
|
328
|
-
iconGradientStop,
|
|
581
|
+
appearance,
|
|
329
582
|
label,
|
|
330
583
|
size,
|
|
331
584
|
testId,
|
|
332
585
|
textColor,
|
|
333
586
|
}: LogoProps) => JSX.Element;
|
|
334
587
|
|
|
588
|
+
/**
|
|
589
|
+
* __Jira software icon__
|
|
590
|
+
*
|
|
591
|
+
* The Jira Software icon without an accompanying wordmark.
|
|
592
|
+
*
|
|
593
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
594
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
595
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
596
|
+
*/
|
|
335
597
|
export declare const JiraSoftwareIcon: ({
|
|
336
|
-
|
|
337
|
-
iconGradientStart,
|
|
338
|
-
iconGradientStop,
|
|
598
|
+
appearance,
|
|
339
599
|
label,
|
|
340
600
|
size,
|
|
341
601
|
testId,
|
|
602
|
+
iconColor,
|
|
603
|
+
iconGradientStart,
|
|
604
|
+
iconGradientStop,
|
|
342
605
|
textColor,
|
|
343
606
|
}: LogoProps) => JSX.Element;
|
|
344
607
|
|
|
608
|
+
/**
|
|
609
|
+
* __Jira Software logo__
|
|
610
|
+
*
|
|
611
|
+
* The Jira Software logo with both the wordmark and the icon combined.
|
|
612
|
+
*
|
|
613
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
614
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
615
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
616
|
+
*/
|
|
345
617
|
export declare const JiraSoftwareLogo: ({
|
|
346
|
-
|
|
347
|
-
iconGradientStart,
|
|
348
|
-
iconGradientStop,
|
|
618
|
+
appearance,
|
|
349
619
|
label,
|
|
350
620
|
size,
|
|
351
621
|
testId,
|
|
622
|
+
iconColor,
|
|
623
|
+
iconGradientStart,
|
|
624
|
+
iconGradientStop,
|
|
352
625
|
textColor,
|
|
353
626
|
}: LogoProps) => JSX.Element;
|
|
354
627
|
|
|
628
|
+
/**
|
|
629
|
+
* __Jira Software wordmark__
|
|
630
|
+
*
|
|
631
|
+
* The Jira Software brand/product name styled as a logo, without an accompanying icon.
|
|
632
|
+
*
|
|
633
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
634
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
635
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
636
|
+
*/
|
|
355
637
|
export declare const JiraSoftwareWordmark: ({
|
|
356
|
-
|
|
357
|
-
iconGradientStart,
|
|
358
|
-
iconGradientStop,
|
|
638
|
+
appearance,
|
|
359
639
|
label,
|
|
360
640
|
size,
|
|
361
641
|
testId,
|
|
362
642
|
textColor,
|
|
363
|
-
}: LogoProps) => JSX.Element;
|
|
364
|
-
|
|
365
|
-
export declare const JiraWordmark: ({
|
|
366
643
|
iconColor,
|
|
367
644
|
iconGradientStart,
|
|
368
645
|
iconGradientStop,
|
|
646
|
+
}: LogoProps) => JSX.Element;
|
|
647
|
+
|
|
648
|
+
/**
|
|
649
|
+
* __Jira wordmark__
|
|
650
|
+
*
|
|
651
|
+
* The Jira brand/product name styled as a logo, without an accompanying icon.
|
|
652
|
+
*
|
|
653
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
654
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
655
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
656
|
+
*/
|
|
657
|
+
export declare const JiraWordmark: ({
|
|
658
|
+
appearance,
|
|
369
659
|
label,
|
|
370
660
|
size,
|
|
371
661
|
testId,
|
|
372
662
|
textColor,
|
|
373
663
|
}: LogoProps) => JSX.Element;
|
|
374
664
|
|
|
665
|
+
/**
|
|
666
|
+
* __Jira Work Management icon__
|
|
667
|
+
*
|
|
668
|
+
* The Jira Work Management icon without an accompanying wordmark.
|
|
669
|
+
*
|
|
670
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
671
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
672
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
673
|
+
*/
|
|
375
674
|
export declare const JiraWorkManagementIcon: ({
|
|
376
|
-
|
|
377
|
-
iconGradientStart,
|
|
378
|
-
iconGradientStop,
|
|
675
|
+
appearance,
|
|
379
676
|
label,
|
|
380
677
|
size,
|
|
381
678
|
testId,
|
|
679
|
+
iconColor,
|
|
680
|
+
iconGradientStart,
|
|
681
|
+
iconGradientStop,
|
|
382
682
|
textColor,
|
|
383
683
|
}: LogoProps) => JSX.Element;
|
|
384
684
|
|
|
685
|
+
/**
|
|
686
|
+
* __Jira Work Management logo__
|
|
687
|
+
*
|
|
688
|
+
* The Jira Work Management logo with both the wordmark and the icon combined.
|
|
689
|
+
*
|
|
690
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
691
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
692
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
693
|
+
*/
|
|
385
694
|
export declare const JiraWorkManagementLogo: ({
|
|
386
|
-
|
|
387
|
-
iconGradientStart,
|
|
388
|
-
iconGradientStop,
|
|
695
|
+
appearance,
|
|
389
696
|
label,
|
|
390
697
|
size,
|
|
391
698
|
testId,
|
|
699
|
+
iconColor,
|
|
700
|
+
iconGradientStart,
|
|
701
|
+
iconGradientStop,
|
|
392
702
|
textColor,
|
|
393
703
|
}: LogoProps) => JSX.Element;
|
|
394
704
|
|
|
705
|
+
/**
|
|
706
|
+
* __Jira Work Management wordmark__
|
|
707
|
+
*
|
|
708
|
+
* The Jira Work Management brand/product name styled as a logo, without an accompanying icon.
|
|
709
|
+
*
|
|
710
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
711
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
712
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
713
|
+
*/
|
|
395
714
|
export declare const JiraWorkManagementWordmark: ({
|
|
396
|
-
|
|
397
|
-
iconGradientStart,
|
|
398
|
-
iconGradientStop,
|
|
715
|
+
appearance,
|
|
399
716
|
label,
|
|
400
717
|
size,
|
|
401
718
|
testId,
|
|
719
|
+
iconColor,
|
|
720
|
+
iconGradientStart,
|
|
721
|
+
iconGradientStop,
|
|
402
722
|
textColor,
|
|
403
723
|
}: LogoProps) => JSX.Element;
|
|
404
724
|
|
|
@@ -406,26 +726,30 @@ export declare type LogoProps = {
|
|
|
406
726
|
/**
|
|
407
727
|
* The size of the icon, uses the same sizing scheme as in `@atlaskit/icon`.
|
|
408
728
|
*/
|
|
409
|
-
size?:
|
|
729
|
+
size?: Size;
|
|
730
|
+
/**
|
|
731
|
+
* Choice of logo appearance between 3 brand-approved color combinations that will be hooked up to design tokens and theming.
|
|
732
|
+
*/
|
|
733
|
+
appearance?: Appearance;
|
|
410
734
|
/**
|
|
411
|
-
* CSS color to be applied to the wordmark portion of the logo SVG.
|
|
735
|
+
* @deprecated CSS color to be applied to the wordmark portion of the logo SVG. The use of this prop is not recommended as it is not compatible with design tokens; use the `appearance` prop instead.
|
|
412
736
|
*/
|
|
413
737
|
textColor?: string;
|
|
414
738
|
/**
|
|
415
|
-
* CSS color to be applied to the non-gradient icon portion of the logo SVG.
|
|
739
|
+
* @deprecated CSS color to be applied to the non-gradient icon portion of the logo SVG. The use of this prop is not recommended as it is not compatible with design tokens; use the `appearance` prop instead.
|
|
416
740
|
*/
|
|
417
741
|
iconColor?: string;
|
|
418
742
|
/**
|
|
419
|
-
* CSS color to start the gradient/shadow on the icon.
|
|
743
|
+
* @deprecated CSS color to start the gradient/shadow on the icon. The use of this prop is not recommended as it is not compatible with design tokens; use the `appearance` prop instead.
|
|
420
744
|
*/
|
|
421
745
|
iconGradientStart?: string;
|
|
422
746
|
/**
|
|
423
|
-
* CSS color to end the gradient/shadow on the icon. Should usually match iconColor to avoid
|
|
424
|
-
* rendering issues in some browsers such as Safari.
|
|
747
|
+
* @deprecated CSS color to end the gradient/shadow on the icon. Should usually match iconColor to avoid
|
|
748
|
+
* rendering issues in some browsers such as Safari. The use of this prop is not recommended as it is not compatible with design tokens; use the `appearance` prop instead.
|
|
425
749
|
*/
|
|
426
750
|
iconGradientStop?: string;
|
|
427
751
|
/**
|
|
428
|
-
* Accessible text to be used for screen readers (it's optional since
|
|
752
|
+
* Accessible text to be used for screen readers (it's optional since the default props provide a label that matches the logo).
|
|
429
753
|
*/
|
|
430
754
|
label?: string;
|
|
431
755
|
/**
|
|
@@ -448,16 +772,23 @@ export declare const OpsGenieIcon: ({
|
|
|
448
772
|
}: LogoProps) => JSX.Element;
|
|
449
773
|
|
|
450
774
|
/**
|
|
451
|
-
*
|
|
775
|
+
* __Opsgenie icon__
|
|
776
|
+
*
|
|
777
|
+
* The Opsgenie icon without an accompanying wordmark.
|
|
778
|
+
*
|
|
779
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
780
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
781
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
452
782
|
*/
|
|
453
783
|
export declare const OpsgenieIcon: ({
|
|
454
|
-
|
|
455
|
-
iconGradientStart,
|
|
456
|
-
iconGradientStop,
|
|
784
|
+
appearance,
|
|
457
785
|
label,
|
|
458
786
|
size,
|
|
459
787
|
testId,
|
|
460
788
|
textColor,
|
|
789
|
+
iconColor,
|
|
790
|
+
iconGradientStart,
|
|
791
|
+
iconGradientStop,
|
|
461
792
|
}: LogoProps) => JSX.Element;
|
|
462
793
|
|
|
463
794
|
/**
|
|
@@ -473,16 +804,23 @@ export declare const OpsGenieLogo: ({
|
|
|
473
804
|
}: LogoProps) => JSX.Element;
|
|
474
805
|
|
|
475
806
|
/**
|
|
476
|
-
*
|
|
807
|
+
* __Opsgenie logo__
|
|
808
|
+
*
|
|
809
|
+
* The Opsgenie logo with both the wordmark and the icon combined.
|
|
810
|
+
*
|
|
811
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
812
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
813
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
477
814
|
*/
|
|
478
815
|
export declare const OpsgenieLogo: ({
|
|
479
|
-
|
|
480
|
-
iconGradientStart,
|
|
481
|
-
iconGradientStop,
|
|
816
|
+
appearance,
|
|
482
817
|
label,
|
|
483
818
|
size,
|
|
484
819
|
testId,
|
|
485
820
|
textColor,
|
|
821
|
+
iconColor,
|
|
822
|
+
iconGradientStart,
|
|
823
|
+
iconGradientStop,
|
|
486
824
|
}: LogoProps) => JSX.Element;
|
|
487
825
|
|
|
488
826
|
/**
|
|
@@ -497,42 +835,84 @@ export declare const OpsGenieWordmark: ({
|
|
|
497
835
|
textColor,
|
|
498
836
|
}: LogoProps) => JSX.Element;
|
|
499
837
|
|
|
838
|
+
/**
|
|
839
|
+
* __Opsgenie wordmark__
|
|
840
|
+
*
|
|
841
|
+
* The Opsgenie brand/product name styled as a logo, without an accompanying icon.
|
|
842
|
+
*
|
|
843
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
844
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
845
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
846
|
+
*/
|
|
500
847
|
export declare const OpsgenieWordmark: ({
|
|
501
|
-
|
|
502
|
-
iconGradientStart,
|
|
503
|
-
iconGradientStop,
|
|
848
|
+
appearance,
|
|
504
849
|
size,
|
|
505
850
|
testId,
|
|
506
851
|
textColor,
|
|
507
|
-
}: LogoProps) => JSX.Element;
|
|
508
|
-
|
|
509
|
-
export declare const StatuspageIcon: ({
|
|
510
852
|
iconColor,
|
|
511
853
|
iconGradientStart,
|
|
512
854
|
iconGradientStop,
|
|
855
|
+
}: LogoProps) => JSX.Element;
|
|
856
|
+
|
|
857
|
+
declare type Size = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
|
|
858
|
+
|
|
859
|
+
/**
|
|
860
|
+
* __Statuspage icon__
|
|
861
|
+
*
|
|
862
|
+
* The Statuspage icon without an accompanying wordmark.
|
|
863
|
+
*
|
|
864
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
865
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
866
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
867
|
+
*/
|
|
868
|
+
export declare const StatuspageIcon: ({
|
|
869
|
+
appearance,
|
|
513
870
|
label,
|
|
514
871
|
size,
|
|
515
872
|
testId,
|
|
873
|
+
iconColor,
|
|
874
|
+
iconGradientStart,
|
|
875
|
+
iconGradientStop,
|
|
516
876
|
textColor,
|
|
517
877
|
}: LogoProps) => JSX.Element;
|
|
518
878
|
|
|
879
|
+
/**
|
|
880
|
+
* __Statuspage logo__
|
|
881
|
+
*
|
|
882
|
+
* The Statuspage logo with both the wordmark and the icon combined.
|
|
883
|
+
*
|
|
884
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
885
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
886
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
887
|
+
*/
|
|
519
888
|
export declare const StatuspageLogo: ({
|
|
520
|
-
|
|
521
|
-
iconGradientStart,
|
|
522
|
-
iconGradientStop,
|
|
889
|
+
appearance,
|
|
523
890
|
label,
|
|
524
891
|
size,
|
|
525
892
|
testId,
|
|
893
|
+
iconColor,
|
|
894
|
+
iconGradientStart,
|
|
895
|
+
iconGradientStop,
|
|
526
896
|
textColor,
|
|
527
897
|
}: LogoProps) => JSX.Element;
|
|
528
898
|
|
|
899
|
+
/**
|
|
900
|
+
* __Statuspage wordmark__
|
|
901
|
+
*
|
|
902
|
+
* The Statuspage brand/product name styled as a logo, without an accompanying icon.
|
|
903
|
+
*
|
|
904
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
905
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
906
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
907
|
+
*/
|
|
529
908
|
export declare const StatuspageWordmark: ({
|
|
530
|
-
|
|
531
|
-
iconGradientStart,
|
|
532
|
-
iconGradientStop,
|
|
909
|
+
appearance,
|
|
533
910
|
label,
|
|
534
911
|
size,
|
|
535
912
|
testId,
|
|
913
|
+
iconColor,
|
|
914
|
+
iconGradientStart,
|
|
915
|
+
iconGradientStop,
|
|
536
916
|
textColor,
|
|
537
917
|
}: LogoProps) => JSX.Element;
|
|
538
918
|
|
|
@@ -572,33 +952,63 @@ export declare const StrideWordmark: ({
|
|
|
572
952
|
textColor,
|
|
573
953
|
}: LogoProps) => JSX.Element;
|
|
574
954
|
|
|
955
|
+
/**
|
|
956
|
+
* __Trello logo__
|
|
957
|
+
*
|
|
958
|
+
* The Trello icon without an accompanying wordmark.
|
|
959
|
+
*
|
|
960
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
961
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
962
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
963
|
+
*/
|
|
575
964
|
export declare const TrelloIcon: ({
|
|
576
|
-
|
|
577
|
-
iconGradientStart,
|
|
578
|
-
iconGradientStop,
|
|
965
|
+
appearance,
|
|
579
966
|
label,
|
|
580
967
|
size,
|
|
581
968
|
testId,
|
|
969
|
+
iconColor,
|
|
970
|
+
iconGradientStart,
|
|
971
|
+
iconGradientStop,
|
|
582
972
|
textColor,
|
|
583
973
|
}: LogoProps) => JSX.Element;
|
|
584
974
|
|
|
975
|
+
/**
|
|
976
|
+
* __Trello logo__
|
|
977
|
+
*
|
|
978
|
+
* The Trello logo with both the wordmark and the icon combined.
|
|
979
|
+
*
|
|
980
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
981
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
982
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
983
|
+
*/
|
|
585
984
|
export declare const TrelloLogo: ({
|
|
586
|
-
|
|
587
|
-
iconGradientStart,
|
|
588
|
-
iconGradientStop,
|
|
985
|
+
appearance,
|
|
589
986
|
label,
|
|
590
987
|
size,
|
|
591
988
|
testId,
|
|
989
|
+
iconColor,
|
|
990
|
+
iconGradientStart,
|
|
991
|
+
iconGradientStop,
|
|
592
992
|
textColor,
|
|
593
993
|
}: LogoProps) => JSX.Element;
|
|
594
994
|
|
|
995
|
+
/**
|
|
996
|
+
* __Trello wordmark__
|
|
997
|
+
*
|
|
998
|
+
* The Trello brand/product name styled as a logo, without an accompanying icon.
|
|
999
|
+
*
|
|
1000
|
+
* - [Examples](https://atlassian.design/components/logo/examples)
|
|
1001
|
+
* - [Code](https://atlassian.design/components/logo/code)
|
|
1002
|
+
* - [Usage](https://atlassian.design/components/logo/usage)
|
|
1003
|
+
*/
|
|
595
1004
|
export declare const TrelloWordmark: ({
|
|
596
|
-
|
|
597
|
-
iconGradientStart,
|
|
598
|
-
iconGradientStop,
|
|
1005
|
+
appearance,
|
|
599
1006
|
label,
|
|
600
1007
|
size,
|
|
601
1008
|
testId,
|
|
1009
|
+
iconColor,
|
|
1010
|
+
iconGradientStart,
|
|
1011
|
+
iconGradientStop,
|
|
602
1012
|
textColor,
|
|
603
1013
|
}: LogoProps) => JSX.Element;
|
|
604
1014
|
|