7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
import React from 'react';
|
|
export type Props = {
|
|
readonly isSelected?: boolean;
|
|
};
|
|
declare function Indicator({ isSelected }: Props): React.JSX.Element;
|
|
export default Indicator;
|