diff --git a/Parts/Input.js b/Parts/Input.js index 41a5a92..5884dc2 100644 --- a/Parts/Input.js +++ b/Parts/Input.js @@ -49,7 +49,7 @@ export default function Input({ label, title, children, className, ...props }) { export function TextArea({ label, title, - children, + children, ...props }) { diff --git a/Parts/Pagination.js b/Parts/Pagination.js index 4cefca2..59d1b99 100644 --- a/Parts/Pagination.js +++ b/Parts/Pagination.js @@ -1,6 +1,5 @@ import Button from "./Button"; import tw, { styled } from "twin.macro"; - ; const Btn = styled(Button)(({ active }) => [tw`rounded-none mx-0`, active && tw`bg-accent`]);