diff --git a/src/components/mock-modal/Modal.css b/src/components/mock-modal/Modal.css new file mode 100644 index 000000000..aaa8d1435 --- /dev/null +++ b/src/components/mock-modal/Modal.css @@ -0,0 +1,6 @@ +.modal { + padding: 2rem; + border: 1px solid var(--goa-color-greyscale-700); + border-radius: 4px; + box-shadow: var(--goa-shadow-modal); +} \ No newline at end of file diff --git a/src/components/mock-modal/Modal.tsx b/src/components/mock-modal/Modal.tsx new file mode 100644 index 000000000..873ae10b7 --- /dev/null +++ b/src/components/mock-modal/Modal.tsx @@ -0,0 +1,16 @@ +import { ReactNode } from "react"; +import "./Modal.css"; + +interface Props { + children: ReactNode +}; + +export function GoAModal({ children }: Props) { + return ( +
You cannot undo this action.
+