2
0
Files
bot/apps/builder/src/features/blocks/inputs/url/components/UrlNodeContent.tsx

12 lines
292 B
TypeScript
Raw Normal View History

import React from 'react'
import { Text } from '@chakra-ui/react'
import { UrlInputOptions } from 'models'
type Props = {
placeholder: UrlInputOptions['labels']['placeholder']
}
export const UrlNodeContent = ({ placeholder }: Props) => (
<Text color={'gray.500'}>{placeholder}</Text>
)