summaryrefslogtreecommitdiff
path: root/packages/create-astro/src/components/Emoji.tsx
blob: 4a294f5db37461a38b8d5f63e20c9908cb962e5c (plain) (blame)
1
2
3
4
5
import React from 'react';
import { Text } from 'ink';
import { isWin } from '../utils';

export default ({ children }) => (isWin() ? null : <Text>{children}</Text>);