@loomhq/lens 10.76.4 → 10.77.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.
|
@@ -187,6 +187,7 @@ export { default as SvgVolumeMute } from "./volume-mute.js";
|
|
|
187
187
|
export { default as SvgVolumeOff } from "./volume-off.js";
|
|
188
188
|
export { default as SvgVolumeUp } from "./volume-up.js";
|
|
189
189
|
export { default as SvgVolumeX } from "./volume-x.js";
|
|
190
|
+
export { default as SvgWarningAlert } from "./warning-alert.js";
|
|
190
191
|
export { default as SvgWarningAmber } from "./warning-amber.js";
|
|
191
192
|
export { default as SvgXCircle } from "./x-circle.js";
|
|
192
193
|
export { default as SvgZap } from "./zap.js";
|
|
@@ -187,6 +187,7 @@ export { default as SvgVolumeMute } from './volume-mute.js';
|
|
|
187
187
|
export { default as SvgVolumeOff } from './volume-off.js';
|
|
188
188
|
export { default as SvgVolumeUp } from './volume-up.js';
|
|
189
189
|
export { default as SvgVolumeX } from './volume-x.js';
|
|
190
|
+
export { default as SvgWarningAlert } from './warning-alert.js';
|
|
190
191
|
export { default as SvgWarningAmber } from './warning-amber.js';
|
|
191
192
|
export { default as SvgXCircle } from './x-circle.js';
|
|
192
193
|
export { default as SvgZap } from './zap.js';
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
const SvgWarningAlert = props => (React.createElement("svg", Object.assign({ viewBox: "0 0 24 24", fill: "none" }, props),
|
|
3
|
+
React.createElement("path", { fill: "currentColor", fillRule: "evenodd", clipRule: "evenodd", d: "M7.42 2.293A1 1 0 0 1 8.127 2h7.245a1 1 0 0 1 .708.293l5.127 5.127a1 1 0 0 1 .293.707v7.245a1 1 0 0 1-.293.708l-5.127 5.127a1 1 0 0 1-.707.293H8.128a1 1 0 0 1-.708-.293L2.293 16.08A1 1 0 0 1 2 15.373V8.128a1 1 0 0 1 .293-.708L7.42 2.293ZM8.542 4 4 8.542v6.416L8.542 19.5h6.416l4.542-4.542V8.542L14.958 4H8.542Zm2.208 11.25a1 1 0 0 1 1-1h.009a1 1 0 1 1 0 2h-.009a1 1 0 0 1-1-1Zm2-7a1 1 0 1 0-2 0v3.5a1 1 0 1 0 2 0v-3.5Z" })));
|
|
4
|
+
export default SvgWarningAlert;
|