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

22 lines
564 B
TypeScript
Raw Normal View History

2022-02-04 17:41:40 +00:00
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>
)
}