odaptos_design_system 1.4.178 → 1.4.179
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/dist/Icons/Interaction/UnlockedIcon.d.ts +7 -0
- package/dist/Icons/index.d.ts +1 -0
- package/dist/odaptos_design_system.cjs.development.js +37 -0
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +37 -1
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Icons/Interaction/UnlockedIcon.tsx +46 -0
- package/src/Icons/index.ts +1 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SvgIconProps } from '@mui/material';
|
|
3
|
+
interface CustomSvgProps {
|
|
4
|
+
size?: 'sm' | 'base' | 'lg' | 'xl';
|
|
5
|
+
}
|
|
6
|
+
export default function UnlockedIcon({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
|
|
7
|
+
export {};
|
package/dist/Icons/index.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ export { default as UxGuide } from './Illustrations/UxGuide';
|
|
|
56
56
|
export { default as VideoFlag } from './Illustrations/VideoFlag';
|
|
57
57
|
export { default as VideoFlag2 } from './Illustrations/VideoFlag2';
|
|
58
58
|
export { default as VideoFlagGreen } from './Illustrations/VideoFlagGreen';
|
|
59
|
+
export { default as UnlockedIcon } from './Interaction/UnlockedIcon';
|
|
59
60
|
export { default as AccountIcon } from './Interaction/AccountIcon';
|
|
60
61
|
export { default as AddIcon } from './Interaction/AddIcon';
|
|
61
62
|
export { default as AgendaIcon } from './Interaction/AgendaIcon';
|
|
@@ -4139,6 +4139,42 @@ function VideoFlagGreen({
|
|
|
4139
4139
|
})));
|
|
4140
4140
|
}
|
|
4141
4141
|
|
|
4142
|
+
function UnlockedIcon({
|
|
4143
|
+
stroke,
|
|
4144
|
+
strokeWidth,
|
|
4145
|
+
fill,
|
|
4146
|
+
size = 'base',
|
|
4147
|
+
...rest
|
|
4148
|
+
}) {
|
|
4149
|
+
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
4150
|
+
strokeWidth: strokeWidth ?? 0.1,
|
|
4151
|
+
stroke: stroke ? stroke : 'currentColor',
|
|
4152
|
+
sx: {
|
|
4153
|
+
height: getIconSize(size),
|
|
4154
|
+
width: getIconSize(size)
|
|
4155
|
+
}
|
|
4156
|
+
}, rest), /*#__PURE__*/React__default.createElement("svg", {
|
|
4157
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4158
|
+
width: "16",
|
|
4159
|
+
height: "16",
|
|
4160
|
+
viewBox: "0 0 16 16",
|
|
4161
|
+
fill: "none"
|
|
4162
|
+
}, /*#__PURE__*/React__default.createElement("g", {
|
|
4163
|
+
"clip-path": "url(#clip0_362_3712)"
|
|
4164
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
4165
|
+
"fill-rule": "evenodd",
|
|
4166
|
+
"clip-rule": "evenodd",
|
|
4167
|
+
d: "M8 6H14.5333C15.1333 6 16 6.4 15.9333 7.46667V14.5333C15.9333 15.1333 15.6 16 14.4667 16H5.46667C4.86667 16 4 15.6 4 14.4667V7.46667C4 6.86667 4.4 6 5.46667 6H7V4C7 3.2 6.66667 2.46667 6.13333 1.86667C5.53333 1.33333 4.8 1 4 1C3.2 1 2.46667 1.33333 1.93333 1.86667C1.4 2.46667 1.06667 3.2 1.06667 4V6.53333C1.06667 6.86667 0.866667 7.06667 0.533333 7.06667C0.2 7.06667 0 6.8 0 6.53333V4C0 2.93333 0.4 1.93333 1.2 1.2C1.93333 0.4 2.93333 0 4 0C5.06667 0 6.06667 0.4 6.8 1.2C7.6 1.93333 8 2.93333 8 4V6ZM14.4667 15C14.9333 15 15 14.6667 15 14.4667H15.0667V7.53333C15.0667 7.06667 14.7333 7 14.5333 7H5.53333C5.06667 7 5 7.33333 5 7.53333V14.4667C5 14.9333 5.33333 15 5.53333 15H14.4667ZM9.46666 12C9.46666 12.3333 9.73333 12.5333 10 12.5333C10.2667 12.5333 10.5333 12.2667 10.5333 12V10C10.5333 9.66667 10.3333 9.46667 10 9.46667C9.66666 9.46667 9.46666 9.73334 9.46666 10V12Z",
|
|
4168
|
+
fill: fill
|
|
4169
|
+
})), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
|
|
4170
|
+
id: "clip0_362_3712"
|
|
4171
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
4172
|
+
width: "16",
|
|
4173
|
+
height: "16",
|
|
4174
|
+
fill: "white"
|
|
4175
|
+
})))));
|
|
4176
|
+
}
|
|
4177
|
+
|
|
4142
4178
|
function AccountIcon({
|
|
4143
4179
|
stroke,
|
|
4144
4180
|
strokeWidth,
|
|
@@ -13177,6 +13213,7 @@ exports.ToggleTab = ToggleTab;
|
|
|
13177
13213
|
exports.Tooltip = Tooltip;
|
|
13178
13214
|
exports.TvFlatScreenIcon = TvFlatScreenIcon;
|
|
13179
13215
|
exports.TvIcon = TvIcon;
|
|
13216
|
+
exports.UnlockedIcon = UnlockedIcon;
|
|
13180
13217
|
exports.UnmoderatedIcon = UnmoderatedIcon;
|
|
13181
13218
|
exports.UsabilityBrowser = UsabilityBrowser;
|
|
13182
13219
|
exports.UserFlows = UserFlows;
|