1
Fork 0
mirror of https://github.com/Steffo99/unisteffo.git synced 2024-11-22 16:04:21 +00:00
triennale-appunti-steffo/components/warnings.tsx

11 lines
356 B
TypeScript
Raw Normal View History

2022-02-03 01:08:09 +00:00
import { Panel } from "@steffo/bluelib-react"
export const Warning = (props) => {
return (
<Panel builtinColor="yellow">
<B>Attenzione:</B> questi file non sono stati ricontrollati da quando sono stati scritti, e potrebbero contenere errori!<br/>
<small>Usali a tuo rischio e pericolo!</small>
</Panel>
)
}