import { useState } from 'react';
import { PixelPasswordInput } from './PixelPasswordInput';
export function Default() {
return ;
}
export function WithHint() {
return (
);
}
export function WithError() {
return (
);
}
export function Tones() {
return (
);
}
export function Sizes() {
return (
);
}
export function Surfaces() {
return (
);
}
export function Disabled() {
return (
);
}
export function CustomToggleLabels() {
return (
);
}
export function Controlled() {
const [value, setValue] = useState('');
return (
setValue(e.target.value)}
hint={`Length: ${value.length}`}
/>
);
}
export function Uncontrolled() {
return (
);
}