UNPKG
@visa/nova-react
Version:
latest (3.1.0)
3.1.0
3.0.0
2.5.4
2.5.3
2.5.2
Visa Product Design System Nova React library. Compatible with React ^19.
@visa/nova-react
/
badge-ellipse
/
index.d.ts
10 lines
(9 loc)
•
303 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
type
{
FC
,
SVGProps
}
from
'react'
;
export
type
VisaBadgeEllipseProperties
= {
/** CSS Class Name */
className
?:
string
;
/** aria-label */
'aria-label'
?:
string
; } &
SVGProps
<
SVGSVGElement
>;
declare
const
BadgeEllipse
:
FC
<
VisaBadgeEllipseProperties
>;
export
default
BadgeEllipse
;