[WEB-5511] regression: revamped navigation UI bugs (#8183)
This commit is contained in:
parent
05b1c147a9
commit
eddf80aaed
13 changed files with 164 additions and 149 deletions
|
|
@ -54,6 +54,7 @@ export * from "./properties";
|
|||
export * from "./related-icon";
|
||||
export * from "./sans-serif-icon";
|
||||
export * from "./serif-icon";
|
||||
export * from "./set-as-default-icon";
|
||||
export * from "./side-panel-icon";
|
||||
export * from "./state";
|
||||
export * from "./sticky-note-icon";
|
||||
|
|
|
|||
23
packages/propel/src/icons/set-as-default-icon.tsx
Normal file
23
packages/propel/src/icons/set-as-default-icon.tsx
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
import type { ISvgIcons } from "./type";
|
||||
|
||||
export function SetAsDefaultIcon({ className = "text-current", ...rest }: ISvgIcons) {
|
||||
return (
|
||||
<svg
|
||||
width="15"
|
||||
height="15"
|
||||
viewBox="0 0 15 15"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
className={className}
|
||||
{...rest}
|
||||
>
|
||||
<path
|
||||
d="M7.29167 0.625V13.9583M12.0057 2.57762L2.57762 12.0057M13.9583 7.29167H0.625M12.0057 12.0057L2.57762 2.57762"
|
||||
stroke="currentColor"
|
||||
strokeWidth="1.25"
|
||||
strokeLinecap="round"
|
||||
strokeLinejoin="round"
|
||||
/>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue