baseui
Version:
A React Component library implementing the Base design language
16 lines (15 loc) • 480 B
TypeScript
import * as React from 'react';
import type { ListProps } from './types';
import type { SyntheticEvent } from 'react';
declare class StatelessList extends React.Component<ListProps, {
isFocusVisible: boolean;
}> {
static defaultProps: Partial<ListProps>;
state: {
isFocusVisible: boolean;
};
handleFocus: (event: SyntheticEvent) => void;
handleBlur: (event: SyntheticEvent) => void;
render(): React.JSX.Element;
}
export default StatelessList;