11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
|
|
import { CommonComponentProps } from "./common";
|
||
|
|
import { Variant } from "./Button";
|
||
|
|
|
||
|
|
type CalloutProps = CommonComponentProps & {
|
||
|
|
variant?: Variant; //default info
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function Callout(props: CalloutProps) {
|
||
|
|
return null;
|
||
|
|
}
|