컴포넌트 연습하기 Text //Text.js import "./Text.css"; import PropTypes from "prop-types"; const Text = ({ children, size, paragraph, block, strong, underline, delete: del, color, mark, code, ...props }) => { const Tag = block ? "div" : paragraph ? "p" : "span"; const fontStyle = { fontWeight: strong && "bold", fontSize: typeof size === "number" && size, textDecoration: underline && "underline", color, }..