mirror of
https://github.com/Steffo99/unisteffo.git
synced 2024-11-22 16:04:21 +00:00
22 lines
564 B
TypeScript
22 lines
564 B
TypeScript
|
import * as React from "react"
|
|||
|
import * as Bluelib from "@steffo/bluelib-react"
|
|||
|
import style from "./warn.module.css"
|
|||
|
|
|||
|
|
|||
|
export const Warn420 = () => {
|
|||
|
return (
|
|||
|
<Bluelib.Panel builtinColor="yellow" className={style.warn420}>
|
|||
|
⚠️ Unisteffo richiede uno schermo largo almeno 420px.
|
|||
|
</Bluelib.Panel>
|
|||
|
)
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
export const Warn1024 = () => {
|
|||
|
return (
|
|||
|
<Bluelib.Panel builtinColor="yellow" className={style.warn1024}>
|
|||
|
⚠️ Appuntiweb richiede uno schermo largo almeno 1024px.
|
|||
|
</Bluelib.Panel>
|
|||
|
)
|
|||
|
}
|