diff --git a/client/src/components/common/EllipisisBox.tsx b/client/src/components/common/EllipisisBox.tsx index 11e945b..6d1989c 100644 --- a/client/src/components/common/EllipisisBox.tsx +++ b/client/src/components/common/EllipisisBox.tsx @@ -3,16 +3,16 @@ import { FaAngleDown } from "react-icons/fa"; import { styled } from "styled-components"; import Button from "./Button"; -interface Prpos { +interface Props { children: React.ReactNode; - linelimit: number; + lineLimit: number; } -const EllipsisBox = ({ children, linelimit }: Prpos) => { +const EllipsisBox = ({ children, lineLimit }: Props) => { const [expanded, setExpanded] = useState(false); return ( - +

{children}