2021-05-24 12:13:24 +00:00
|
|
|
import React from "react"
|
2021-05-20 09:39:40 +00:00
|
|
|
import Style from "./Empty.module.css"
|
|
|
|
import classNames from "classnames"
|
2021-05-24 12:13:24 +00:00
|
|
|
import useStrings from "../../hooks/useStrings"
|
2021-05-20 09:39:40 +00:00
|
|
|
|
|
|
|
|
2021-05-23 03:03:41 +00:00
|
|
|
/**
|
|
|
|
* 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 }) {
|
2021-05-24 12:13:24 +00:00
|
|
|
const strings = useStrings()
|
2021-05-20 09:39:40 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<i className={classNames(Style.Empty, className)} {...props}>
|
|
|
|
{strings.emptyMenu}
|
|
|
|
</i>
|
|
|
|
)
|
|
|
|
}
|