mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-23 05:24:18 +00:00
23 lines
703 B
JavaScript
23 lines
703 B
JavaScript
import React, { useContext } from "react"
|
|
import Style from "./Empty.module.css"
|
|
import classNames from "classnames"
|
|
import ContextLanguage from "../../contexts/ContextLanguage"
|
|
|
|
|
|
/**
|
|
* A simple inline `<i>` element to be used when there is nothing to be displayed inside a box.
|
|
*
|
|
* @param className - Additional class(es) to append to the element.
|
|
* @param props - Additional props to pass to the element.
|
|
* @returns {JSX.Element}
|
|
* @constructor
|
|
*/
|
|
export default function Empty({ className, ...props }) {
|
|
const { strings } = useContext(ContextLanguage)
|
|
|
|
return (
|
|
<i className={classNames(Style.Empty, className)} {...props}>
|
|
{strings.emptyMenu}
|
|
</i>
|
|
)
|
|
}
|