1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 07:54:22 +00:00
triennale-appunti-steffo/components/warn.tsx

21 lines
564 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
)
}