wix-style-react
Version:
wix-style-react
28 lines (25 loc) • 629 B
JavaScript
import React from 'react';
import TextLink from '../../../src/TPA/TextLink';
import styles from './styles.scss';
var style = {
display: 'inline-block',
padding: '0 5px',
width: '140px',
lineHeight: '22px'
};
function Example() {
return React.createElement(
'div',
{ style: style },
React.createElement(
TextLink,
{
link: 'https://wix-wix-style-react.surge.sh/?selectedKind=Introduction&selectedStory=Getting%20started&full=0&down=0&left=1&panelRight=0',
target: '_blank',
className: styles.someCustomClass
},
'Click me'
)
);
}
export default Example;