This commit is contained in:
rosetta
2026-01-30 05:01:05 +02:00
commit 83f38dc63f
327 changed files with 18725 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { Flex, MantineSize, Text } from "@mantine/core";
import { SvgR } from "../SvgR/SvgR";
interface RosettaPowerProps {
mt?: number | string | MantineSize;
}
export function RosettaPower(props: RosettaPowerProps) {
return (
<Flex style={{
userSelect: 'none'
}} mt={props.mt} justify={"center"} direction={'row'} align={"center"} gap={'xs'}>
<SvgR width={10} height={10} fill="gray"></SvgR>
<Text size={'xs'} c={'dimmed'}>rosetta - powering freedom</Text>
</Flex>
);
}