@smart-react-components/ui
Version:
SRC UI includes React and Styled components.
17 lines (16 loc) • 626 B
TypeScript
import { IntrinsicStyledCoreProps } from '@smart-react-components/core/element-props/intrinsic-styled-core-props';
import { JSXElementProps, PaletteProp, ShapeProp } from '@smart-react-components/core/types';
import React from 'react';
export interface Props extends IntrinsicStyledCoreProps {
children: JSX.Element[];
elementProps?: JSXElementProps;
hasWaveEffect?: boolean;
isOutline?: boolean;
isSoft?: boolean;
palette?: PaletteProp;
separator?: string;
shape?: ShapeProp;
waveEffectPalette?: PaletteProp;
}
declare const BreadcrumbList: React.FC<Props>;
export default BreadcrumbList;