import React, { CSSProperties } from "react"; import * as Styled from "./index.styled"; import { theme } from "../../constants"; interface Props { style?: CSSProperties; variant?: keyof typeof theme; children: React.ReactNode; onClick?: () => void; } export function Button({ onClick, style, variant, children }: Props) { return ( {children} ); }