File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import {memo} from 'react';
66
77export const IconExperimental = memo <
88 JSX . IntrinsicElements [ 'svg' ] & { title ?: string ; size ?: 's' | 'md' }
9- > ( function IconCanary (
9+ > ( function IconExperimental (
1010 { className, title, size} = {
1111 className : undefined ,
1212 title : undefined ,
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ import {finishedTranslations} from 'utils/finishedTranslations';
3737
3838import ErrorDecoder from './ErrorDecoder' ;
3939import { IconCanary } from '../Icon/IconCanary' ;
40+ import { IconExperimental } from 'components/Icon/IconExperimental' ;
4041
4142function CodeStep ( { children, step} : { children : any ; step : number } ) {
4243 return (
@@ -130,7 +131,7 @@ const ExperimentalBadge = ({title}: {title: string}) => (
130131 className = {
131132 'text-base font-display px-1 py-0.5 font-bold bg-gray-10 dark:bg-gray-60 text-gray-60 dark:text-gray-10 rounded'
132133 } >
133- < IconCanary
134+ < IconExperimental
134135 size = "s"
135136 className = { 'inline me-1 mb-0.5 text-sm text-gray-60 dark:text-gray-10' }
136137 />
You can’t perform that action at this time.
0 commit comments