Skip to content

Commit b792358

Browse files
committed
fix(web): fix BaseButton import artifact
1 parent 73da7da commit b792358

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

apps/web/components/single-button/inline-styles.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { Button as BaseButton } from "@react-email/components";
1+
import { Button } from "@react-email/components";
22
import { Layout } from "../_components/layout";
33

44
export const component = (
5-
<BaseButton
5+
<Button
66
href="https://react.email"
77
style={{
88
width: "100%",
@@ -16,7 +16,7 @@ export const component = (
1616
}}
1717
>
1818
Get started
19-
</BaseButton>
19+
</Button>
2020
);
2121

2222
export default () => {

apps/web/components/single-button/tailwind.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import { Button as BaseButton } from "@react-email/components";
1+
import { Button } from "@react-email/components";
22
import { Layout } from "../_components/layout";
33

44
export const component = (
5-
<BaseButton
5+
<Button
66
className="box-border w-full rounded-[8px] bg-indigo-600 px-[12px] py-[12px] text-center font-semibold text-white"
77
href="https://react.email"
88
>
99
Get started
10-
</BaseButton>
10+
</Button>
1111
);
1212

1313
export default () => {

0 commit comments

Comments
 (0)