decentraland-ui
Version:
Decentraland's UI components and styles
15 lines (14 loc) • 433 B
TypeScript
import React from 'react';
import './SmartWearableFilter.css';
export declare type SmartWearableFilterProps = {
isOnlySmart?: boolean;
onChange: (value: boolean) => void;
'data-testid'?: string;
className?: string;
i18n?: {
title: string;
selected: string;
};
defaultCollapsed?: boolean;
};
export declare const SmartWearableFilter: (props: SmartWearableFilterProps) => React.JSX.Element;