diff --git a/packages/web/src/common/components/Buttons/IconButton.tsx b/packages/web/src/common/components/Buttons/IconButton.tsx deleted file mode 100644 index bf6f5aa..0000000 --- a/packages/web/src/common/components/Buttons/IconButton.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import React, { HTMLAttributes } from "react"; -import styled from "styled-components"; -import Button from "./Button"; -import Typography from "../Typography"; -import Icon from "../Icon"; - -// TODO: 나중에 Buttons 폴더로 묶으면 어떨지 -export interface IconButtonProps extends HTMLAttributes { - type: "default" | "disabled" | "outlined"; - buttonText: string; - iconType: string; -} - -const ButtonInner = styled.div` - width: 100%; - height: 100%; - justify-content: center; - align-items: center; - gap: 4px; - display: inline-flex; -`; - -const IconButton: React.FC = ({ - type = "default", - buttonText = "", - iconType = "", - ...props -}) => ( - -); - -export default IconButton;