Skip to content

Commit

Permalink
fix(link): fix LinkProps export (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
tihuan authored Mar 1, 2022
1 parent 445be62 commit a781efc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/Link/style.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { css } from "@emotion/react";
import styled from "@emotion/styled";
import { Link, LinkProps as Props } from "@material-ui/core";
import { Link, LinkProps as RawLinkProps } from "@material-ui/core";
import { Props as StyleProps } from "../styles";

export type LinkProps = Props &
export type LinkProps = RawLinkProps &
StyleProps & {
sdsStyle?: "default";
};
Expand Down

0 comments on commit a781efc

Please sign in to comment.