-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(icons): icons missing for volume presets and others (#4671)
- Loading branch information
1 parent
7d22480
commit 01924b8
Showing
2 changed files
with
72 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
platform/ui-next/src/components/Icons/Sources/NotificationWarning.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import React from 'react'; | ||
import type { IconProps } from '../types'; | ||
|
||
export const NotificationInfo = (props: IconProps) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="13" | ||
height="13" | ||
viewBox="0 0 13 13" | ||
{...props} | ||
> | ||
<g | ||
fill="none" | ||
fillRule="evenodd" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
> | ||
<path | ||
fill="#F3DC43" | ||
stroke="#F3DC43" | ||
d="M1.217 5.076L5.54.751c.391-.39 1.024-.39 1.415 0l4.324 4.325c.391.39.391 1.024 0 1.414l-4.324 4.325c-.39.39-1.024.39-1.415 0L1.217 6.49c-.39-.39-.39-1.023 0-1.414z" | ||
transform="translate(0 1)" | ||
/> | ||
<g stroke="#000"> | ||
<path | ||
strokeWidth="1.5" | ||
d="M0.5 3L0.5 0" | ||
transform="translate(0 1) translate(6 3)" | ||
/> | ||
<path | ||
d="M0.5 4.5L0.5 4.5" | ||
transform="translate(0 1) translate(6 3)" | ||
/> | ||
<path | ||
strokeWidth="1.5" | ||
d="M.489 5.25c-.065.002-.127.03-.172.078-.044.048-.068.112-.065.177.005.135.115.243.25.245h.009c.065-.002.127-.03.171-.078.045-.048.068-.112.066-.177-.004-.134-.112-.241-.246-.245" | ||
transform="translate(0 1) translate(6 3)" | ||
/> | ||
</g> | ||
</g> | ||
</svg> | ||
); | ||
|
||
export default NotificationInfo; |