import * as React from 'react';
import { useTheme } from '../theme';
import View from '../view';
const Logo = ({ color = 'TEDRed.0', ...props }: { color?: string }) => {
return (
);
};
const Lockup = ({ color = 'TEDRed.0', ...props }: { color?: string }) => {
const theme = useTheme();
return (
);
};
export { Logo, Lockup };