kiban-design-system 1.0.223-alpha.0 → 1.1.1-hotfix.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kiban-design-system",
3
- "version": "1.0.223-alpha.0",
3
+ "version": "1.1.1-hotfix.0",
4
4
  "description": "",
5
5
  "author": "Kiban",
6
6
  "license": "",
@@ -1,5 +0,0 @@
1
- /// <reference types="react" />
2
- import type { LinkProps } from './Link.props';
3
- import './Link.styles.scss';
4
- declare const Link: ({ children, className: classNameProp, component, to, }: LinkProps) => JSX.Element;
5
- export default Link;
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- export interface LinkProps {
3
- to?: string;
4
- children: React.ReactNode;
5
- className?: string;
6
- component: React.ElementType;
7
- }
@@ -1,3 +0,0 @@
1
- import Link from './Link';
2
- export * from './Link.props';
3
- export { Link };