fix: add missing CardDescription component and import (batch 0.6.2)
This commit is contained in:
parent
762c9d899d
commit
32a2b905a1
|
|
@ -0,0 +1,14 @@
|
|||
import * as React from 'react'
|
||||
|
||||
const CardDescription = React.forwardRef(
|
||||
({ className = '', ...props }, ref) => (
|
||||
<p
|
||||
ref={ref}
|
||||
className={`text-sm text-muted-foreground ${className}`}
|
||||
{...props}
|
||||
/>
|
||||
)
|
||||
)
|
||||
CardDescription.displayName = 'CardDescription'
|
||||
|
||||
export { CardDescription }
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
import { Button } from '@/components/ui/Button'
|
||||
import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/Card'
|
||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/Card'
|
||||
import { services } from '@/data/services'
|
||||
import { industries } from '@/data/industries'
|
||||
import { useNavigate } from 'react-router-dom'
|
||||
|
|
|
|||
Loading…
Reference in New Issue