import { CryptoScreener } from '@hanzo/ui'
The crypto market, dark theme, priced in USD.
export function Default() {return <CryptoScreener />}
The same table switched to a stock exchange universe.
export function Market() {return <CryptoScreener market="america" colorTheme="dark" />}
Opens on the performance columns instead of the overview.
export function Column() {return <CryptoScreener defaultColumn="performance" />}
A shorter, fixed-width frame for a sidebar placement.
export function Sized() {return (<YStack width={360}><CryptoScreener width={360} height={400} colorTheme="light" /></YStack>)}
export type CryptoScreenerMarket = 'crypto' | (string & {})
export type CryptoScreenerColumn =| 'overview'| 'performance'| 'oscillators'| 'moving_averages'| 'valuation'
export type CryptoScreenerTheme = 'light' | 'dark'
export interface CryptoScreenerProps extends Omit<YStackProps, 'width' | 'height' | 'theme'> {/** Which market the table screens. */market?: CryptoScreenerMarket/** Which column set the table opens on. */defaultColumn?: CryptoScreenerColumn/** The currency prices and volumes are shown in. */displayCurrency?: string/** The table's own palette; independent of the surrounding gui theme. */colorTheme?: CryptoScreenerThemeisTransparent?: booleanlocale?: stringwidth?: string | numberheight?: string | number}