ghost-dao-interface/src/components/Button/index.jsx
Uncle Fatso d4446f6fb1
version 0.0.22
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2025-04-28 14:03:56 +03:00

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} />;
};