29 lines
751 B
TypeScript
29 lines
751 B
TypeScript
import { Column } from "@revolt/ui";
|
|
|
|
/**
|
|
* Accessibility settings page
|
|
*/
|
|
export default function Accessibility() {
|
|
return (
|
|
<Column gap="lg">
|
|
{/* <CategoryButtonGroup>
|
|
<FormGroup>
|
|
<CategoryButton
|
|
action={<Checkbox value onChange={(value) => void value} />}
|
|
onClick={() => void 0}
|
|
icon={<MdAnimation {...iconSize(22)} />}
|
|
description={
|
|
<Trans>
|
|
If this is enabled, animations and motion effects won't play or
|
|
will be less intense.
|
|
</Trans>
|
|
}
|
|
>
|
|
<Trans>Reduced Motion</Trans>
|
|
</CategoryButton>
|
|
</FormGroup>
|
|
</CategoryButtonGroup> */}
|
|
</Column>
|
|
);
|
|
}
|