# Link Content
URL: /react/components/link-content
Source: https://github.com/daangn/seed-design/blob/dev/docs/content/react/components/(deprecated)/link-content.mdx
더 이상 사용되지 않습니다. [Action Button](/react/components/action-button)에 `variant="ghost"`를 사용하세요.
## Preview
```tsx
import { IconChevronRightLine } from "@karrotmarket/react-monochrome-icon";
import { LinkContent, SuffixIcon } from "@seed-design/react";
export default function LinkContentPreview() {
return (
새 글
} />
);
}
```
## Usage
```tsx
import { LinkContent, SuffixIcon } from "@seed-design/react";
import { IconChevronRightLine } from "@karrotmarket/react-monochrome-icon";
```
```tsx
Label
} />
```
## Props
## Examples
### Size
```tsx
import { IconChevronRightLine } from "@karrotmarket/react-monochrome-icon";
import { LinkContent, SuffixIcon, VStack } from "@seed-design/react";
export default function LinkContentSize() {
return (
추가
} />
추가
} />
추가
} />
);
}
```
### Color
```tsx
import { IconChevronRightLine } from "@karrotmarket/react-monochrome-icon";
import { LinkContent, VStack, SuffixIcon } from "@seed-design/react";
export default function LinkContentColor() {
return (
더보기
} />
더보기
} />
더보기
} />
더보기
} />
);
}
```