21 lines
525 B
JavaScript
21 lines
525 B
JavaScript
import Button from "./Button";
|
|
|
|
export const PrimaryButton = (props) => {
|
|
return <Button template="primary" {...props} />;
|
|
};
|
|
|
|
export const SecondaryButton = (props) => {
|
|
return <Button template="secondary" {...props} />;
|
|
};
|
|
|
|
export const TertiaryButton = (props) => {
|
|
return <Button template="tertiary" {...props} />;
|
|
};
|
|
|
|
export const TextButton = (props) => {
|
|
return <Button template="text" {...props} />;
|
|
};
|
|
export const SuccessButton = (props) => {
|
|
return <Button template="success" {...props} />;
|
|
};
|