Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
lerte committed Nov 7, 2024
1 parent 61c82e7 commit 8981d78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/docs/src/usages/cards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default () => {
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
</Card>
<Card type="filled">
<Card variant="filled">
<img
alt=""
className="w-full object-fit"
Expand All @@ -28,7 +28,7 @@ export default () => {
</p>
</div>
</Card>
<Card type="outlined">
<Card variant="outlined">
<img
alt=""
className="w-full object-fit"
Expand Down
2 changes: 1 addition & 1 deletion packages/actify/src/components/Cards/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import styles from './card.module.css'

interface CardProps extends React.ComponentProps<'div'> {
ripple?: boolean
variant: 'elevated' | 'filled' | 'outlined'
elevation?: number
variant?: 'elevated' | 'filled' | 'outlined'
}

const Card = (props: CardProps) => {
Expand Down

0 comments on commit 8981d78

Please sign in to comment.