diff --git a/package.json b/package.json index a157a1c7e..884c1978d 100644 --- a/package.json +++ b/package.json @@ -234,7 +234,7 @@ "prettier": "prettier '**/*.{js,mjs,ts,mts,jsx,tsx,md,json,yml}'", "prettier-fix": "yarn prettier --write", "fix-staged": "lint-staged --config .lintstagedrc.fix.json --concurrent 1", - "start": "tsc --watch --sourceMap --declarationMap", + "start": "tsc --watch --sourceMap", "start:css": "sass --watch src/styling/index.scss dist/css/index.css", "prepare": "husky install", "preversion": "yarn install", diff --git a/src/components/Button/Button.tsx b/src/components/Button/Button.tsx new file mode 100644 index 000000000..a0c82d2ce --- /dev/null +++ b/src/components/Button/Button.tsx @@ -0,0 +1,6 @@ +import type { ComponentProps } from 'react'; +import clsx from 'clsx'; + +export const Button = ({ className, ...props }: ComponentProps<'button'>) => ( +