Skip to content

Commit f79f600

Browse files
apply emcn-design-review
1 parent e5ecb02 commit f79f600

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/sim/components/emcn/components/callout/callout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { cva, type VariantProps } from 'class-variance-authority'
33
import { AlertTriangle, CheckCircle2, Info } from 'lucide-react'
44
import { cn } from '@/lib/core/utils/cn'
55

6-
const calloutVariants = cva('flex items-center gap-2 rounded-lg border px-2.5 py-2.5 text-[12px]', {
6+
const calloutVariants = cva('flex items-center gap-2 rounded-lg border p-2.5 text-[12px]', {
77
variants: {
88
variant: {
99
default: 'border-[var(--border)] bg-[var(--surface-2)] text-[var(--text-muted)]',
@@ -51,7 +51,7 @@ function Callout({ className, variant, icon, children, ...props }: CalloutProps)
5151

5252
return (
5353
<div className={cn(calloutVariants({ variant }), className)} {...props}>
54-
{Icon && <Icon className='h-3.5 w-3.5 flex-shrink-0' />}
54+
{Icon && <Icon className='h-[14px] w-[14px] shrink-0' />}
5555
<p>{children}</p>
5656
</div>
5757
)

0 commit comments

Comments
 (0)