Sha256: 1f4ed72c94a2315068aba328aae022c40387efda22a072eb1b69b88e5d7be907
Contents?: true
Size: 823 Bytes
Versions: 405
Compression:
Stored size: 823 Bytes
Contents
import React from 'react' import { Link } from 'playbook-ui' const LinkTag = (props) => ( <div> <Link href="#tag" icon="arrow-up-right-from-square" tag="h1" text="h1 link example" {...props} /> <Link href="#tag2" tag="h3" text="h3 link example" underline {...props} /> <Link color="destructive" href="#tag3" tag="h6" text="h6 link example" {...props} /> <Link href="#tag4" iconRight="chevron-right" tag="p" text="p link example" {...props} /> <div> This is a <Link href="#tag5" tag="span" text="span link example" {...props} /> </div> </div> ) export default LinkTag
Version data entries
405 entries across 405 versions & 2 rubygems