13 lines
462 B
TypeScript
13 lines
462 B
TypeScript
import * as React from 'react';
|
|
interface AccessibleIconProps {
|
|
children?: React.ReactNode;
|
|
/**
|
|
* The accessible label for the icon. This label will be visually hidden but announced to screen
|
|
* reader users, similar to `alt` text for `img` tags.
|
|
*/
|
|
label: string;
|
|
}
|
|
declare const AccessibleIcon: React.FC<AccessibleIconProps>;
|
|
export { AccessibleIcon };
|
|
export type { AccessibleIconProps };
|
|
//# sourceMappingURL=AccessibleIcon.d.ts.map
|