This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

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;