mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
15 lines
436 B
JavaScript
15 lines
436 B
JavaScript
import React, { useContext } from "react"
|
|
import Style from "./Empty.module.css"
|
|
import classNames from "classnames"
|
|
import ContextLanguage from "../../contexts/ContextLanguage"
|
|
|
|
|
|
export default function Empty({ children, className, ...props }) {
|
|
const { strings } = useContext(ContextLanguage)
|
|
|
|
return (
|
|
<i className={classNames(Style.Empty, className)} {...props}>
|
|
{strings.emptyMenu}
|
|
</i>
|
|
)
|
|
}
|