Skip to content

Commit

Permalink
feat(code connect): wrapping up input mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
tylermorrisford committed Dec 18, 2024
1 parent 8aa0d2a commit a3e69df
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// @ts-nocheck
import { LocalizedMoneyInput } from '@commercetools-frontend/ui-kit';
import figma from '@figma/code-connect';

figma.connect(
LocalizedMoneyInput,
'https://www.figma.com/design/UoqmtHSHwxvEZRcbsM4A3Z/CT-product-design-system?node-id=463%3A27181',
{
props: {
// TODO: Map props here
children: figma.children('*'),
},
example: (props) => (
<LocalizedMoneyInput>{props.children}</LocalizedMoneyInput>
),
}
);

0 comments on commit a3e69df

Please sign in to comment.