import React from 'react'; import { Flex, Input, Typography } from 'antd'; import { runes } from 'runes2'; const App: React.FC = () => (
Exceed Max
Emoji count as length 1 runes(txt).length, }} defaultValue="🔥🔥🔥" />
Not exceed max runes(txt).length, exceedFormatter: (txt, { max }) => runes(txt).slice(0, max).join(''), }} defaultValue="🔥 antd" />
); export default App;