Repository URL to install this package:
|
Version:
3.0.1 ▾
|
import React from 'react';
import { SwatchListProps } from './typings';
import { defaultRenderListWrapper, defaultRenderSwatchList, defaultRenderSwatchItem } from './renderProps';
declare class SwatchList extends React.PureComponent<SwatchListProps> {
static defaultProps: {
renderItem: typeof defaultRenderSwatchItem;
renderList: typeof defaultRenderSwatchList;
renderWrapper: typeof defaultRenderListWrapper;
};
render(): JSX.Element;
}
export { SwatchList };
export default SwatchList;