diff options
Diffstat (limited to 'packages/ui/src/components')
| -rw-r--r-- | packages/ui/src/components/logo.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/packages/ui/src/components/logo.tsx b/packages/ui/src/components/logo.tsx index 5ddf3fba3..26f312bda 100644 --- a/packages/ui/src/components/logo.tsx +++ b/packages/ui/src/components/logo.tsx @@ -13,6 +13,21 @@ export const Mark = (props: { class?: string }) => { ) } +export const Splash = (props: { class?: string }) => { + return ( + <svg + data-component="logo-splash" + classList={{ [props.class ?? ""]: !!props.class }} + viewBox="0 0 80 100" + fill="none" + xmlns="http://www.w3.org/2000/svg" + > + <path d="M60 80H20V40H60V80Z" fill="var(--icon-base)" /> + <path d="M60 20H20V80H60V20ZM80 100H0V0H80V100Z" fill="var(--icon-strong-base)" /> + </svg> + ) +} + export const Logo = (props: { class?: string }) => { return ( <svg |
