import { SMixinFlexColumn } from "@core/styles/emotion"; import styled from "@emotion/styled"; import { IconSelectWindow } from "components/icon"; import { useI18n } from "hooks"; import React from "react"; interface Props { disableImg?: boolean; title?: string; msg?: string; children?: React.ReactNode; style?: React.CSSProperties; } function EmptyMsg({ disableImg, title, msg, children, style }: Props) { const { t } = useI18n(); return (
{disableImg ? null : ( )} {title ?? t("선택된 아이템이 없습니다.")} {msg && {msg}}
{children &&
{children}
}
); } const Container = styled.div` flex: 1; ${SMixinFlexColumn("center", "center")}; gap: 20px; > div { ${SMixinFlexColumn("center", "center")}; gap: 3px; } `; const Img = styled.div` font-size: 64px; line-height: 1; color: ${(p) => p.theme.text_sub_body_color}; margin-bottom: 10px; `; const Title = styled.div` font-size: 16px; font-weight: 700; color: ${(p) => p.theme.text_sub_body_color}; `; const Msg = styled.div` color: ${(p) => p.theme.text_sub_body_color}; `; export { EmptyMsg };