diff --git a/index.d.ts b/index.d.ts index 065aa39..1ca3f1b 100644 --- a/index.d.ts +++ b/index.d.ts @@ -3,14 +3,14 @@ declare module '@eliancodes/brutal-ui' { href: string; target?: '_blank' | '_self'; color?: string; - } + }; export function Button(props: ButtonProps): any; type DefaultColorProps = { color?: string; - } + }; export function Card(props: DefaultColorProps): any; export function Pill(props: DefaultColorProps): any; -} \ No newline at end of file +} diff --git a/index.ts b/index.ts index c8a557c..012cd59 100644 --- a/index.ts +++ b/index.ts @@ -1,3 +1,3 @@ export { default as Button } from './src/components/Button.astro'; export { default as Card } from './src/components/Card.astro'; -export { default as Pill } from './src/components/Pill.astro'; \ No newline at end of file +export { default as Pill } from './src/components/Pill.astro'; diff --git a/src/components/Card.astro b/src/components/Card.astro index b81c65b..1aeb281 100644 --- a/src/components/Card.astro +++ b/src/components/Card.astro @@ -28,6 +28,6 @@ const { color } = Astro.props; } -
+
diff --git a/src/components/Pill.astro b/src/components/Pill.astro index 6f1082f..f9cbb59 100644 --- a/src/components/Pill.astro +++ b/src/components/Pill.astro @@ -32,8 +32,6 @@ const { color } = Astro.props; } - +