Skip to content

Commit b7087f8

Browse files
committedMar 4, 2025
feat(sanity): add tone prop to Chip component (#7907)
1 parent 6a9d4c1 commit b7087f8

File tree

1 file changed

+5
-5
lines changed
  • packages/sanity/src/core/releases/tool/components

1 file changed

+5
-5
lines changed
 

‎packages/sanity/src/core/releases/tool/components/Chip.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
import {Box, Card, Flex, Text} from '@sanity/ui'
1+
import {Box, Card, type CardProps, Flex, Text} from '@sanity/ui'
22
import {type ComponentType, type ReactNode} from 'react'
33

4-
interface Props {
4+
type Props = {
55
avatar?: ReactNode
66
text: ReactNode
77
icon?: ReactNode
8-
}
8+
} & Pick<CardProps, 'tone'>
99

10-
export const Chip: ComponentType<Props> = (props) => {
10+
export const Chip: ComponentType<Props> = ({tone, ...props}) => {
1111
const {avatar, text, icon} = props
1212

1313
return (
14-
<Card muted radius="full">
14+
<Card muted radius="full" tone={tone}>
1515
<Flex align={'center'}>
1616
{icon && (
1717
<Box padding={1} marginLeft={1}>

0 commit comments

Comments
 (0)
Please sign in to comment.