{"version":3,"file":"password_wrapper-ClKsoOWq.js","sources":["../../../client/app/bundles/Teacher/components/accounts/shared/password_wrapper.tsx"],"sourcesContent":["import * as React from 'react'\n\nimport { Input, } from '../../../../Shared/index'\n\nconst passwordVisibleSrc = `${window.postbuildEnv.CDN_URL}/images/icons/icons-visibility-on.svg`\nconst passwordNotVisibleSrc = `${window.postbuildEnv.CDN_URL}/images/icons/icons-visibility-off.svg`\n\nconst PasswordWrapper = ({ autoComplete, className, error, onChange, id, label, timesSubmitted, value, }) => {\n const [showPassword, setShowPassword] = React.useState(false)\n\n function toggleShowPassword() { setShowPassword(!showPassword) }\n\n return (\n