File tree Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Expand file tree Collapse file tree 4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,14 @@ declare module '@eliancodes/brutal-ui' {
3
3
href : string ;
4
4
target ?: '_blank' | '_self' ;
5
5
color ?: string ;
6
- }
6
+ } ;
7
7
8
8
export function Button ( props : ButtonProps ) : any ;
9
9
10
10
type DefaultColorProps = {
11
11
color ?: string ;
12
- }
12
+ } ;
13
13
14
14
export function Card ( props : DefaultColorProps ) : any ;
15
15
export function Pill ( props : DefaultColorProps ) : any ;
16
- }
16
+ }
Original file line number Diff line number Diff line change 1
1
export { default as Button } from './src/components/Button.astro' ;
2
2
export { default as Card } from './src/components/Card.astro' ;
3
- export { default as Pill } from './src/components/Pill.astro' ;
3
+ export { default as Pill } from './src/components/Pill.astro' ;
Original file line number Diff line number Diff line change @@ -28,6 +28,6 @@ const { color } = Astro.props;
28
28
}
29
29
</style >
30
30
31
- <div class =" brutal-card" >
31
+ <div class =' brutal-card' >
32
32
<slot />
33
33
</div >
Original file line number Diff line number Diff line change @@ -32,8 +32,6 @@ const { color } = Astro.props;
32
32
}
33
33
</style >
34
34
35
- <span
36
- class =" brutal-pill"
37
- >
35
+ <span class =' brutal-pill' >
38
36
<slot />
39
37
</span >
You can’t perform that action at this time.
0 commit comments