added custom checkbox, custom button, custom link, fixes

This commit is contained in:
2023-12-08 18:33:07 +05:00
parent 3eed37e597
commit 8b087e6b24
40 changed files with 683 additions and 291 deletions
@@ -0,0 +1,46 @@
import styles from "./styles.module.css";
const ThemeSetting = () => {
return (
<div className="flex gap-6 p-6 border-b border-b-[#DAE0E5]">
<div className="text-[12px] font-semibold font-[#111C26]">Тема</div>
<div className={styles.checkboxWrapper}>
<label className="w-fit`">
Светлая
<input
type="radio"
className={styles.modernRadio}
value="1"
name="theme"
hidden
/>
<span></span>
</label>
<label>
Тёмная
<input
type="radio"
className={styles.modernRadio}
value="2"
name="theme"
hidden
/>
<span></span>
</label>
<label>
Как в системе
<input
type="radio"
className={styles.modernRadio}
value="2"
name="theme"
hidden
/>
<span></span>
</label>
</div>
</div>
);
};
export default ThemeSetting;