Files
wdi-dashboard/node_modules/@chakra-ui/progress/dist/shape.d.ts
2024-08-16 15:06:52 +05:30

16 lines
315 B
TypeScript

import { HTMLChakraProps } from '@chakra-ui/system';
interface ShapeProps extends HTMLChakraProps<"svg"> {
size?: string | number;
/**
* @default false
*/
isIndeterminate?: boolean;
}
declare const Shape: {
(props: ShapeProps): JSX.Element;
displayName: string;
};
export { Shape };