import { createComponent } from '~/utils'; import type { PasswordStrength } from '../../utils/types'; import { Box } from '../Box'; import { styles } from './styles'; export type StrengthIndicatorIndicatorProps = { strength: PasswordStrength; }; export const StrengthIndicator = createComponent(({ strength, ...props }) => ( ));