desktop: add loading window and restructure rust (#12176)
This commit is contained in:
parent
5a1bf3a968
commit
b7ad8e459c
22 changed files with 849 additions and 430 deletions
|
|
@ -1,3 +1,5 @@
|
|||
import { ComponentProps } from "solid-js"
|
||||
|
||||
export const Mark = (props: { class?: string }) => {
|
||||
return (
|
||||
<svg
|
||||
|
|
@ -13,9 +15,10 @@ export const Mark = (props: { class?: string }) => {
|
|||
)
|
||||
}
|
||||
|
||||
export const Splash = (props: { class?: string }) => {
|
||||
export const Splash = (props: Pick<ComponentProps<"svg">, "ref" | "class">) => {
|
||||
return (
|
||||
<svg
|
||||
ref={props.ref}
|
||||
data-component="logo-splash"
|
||||
classList={{ [props.class ?? ""]: !!props.class }}
|
||||
viewBox="0 0 80 100"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue