+ OpenPencil
+ Design with code-shaped CSS.
+
+`
+
+export const cardCSS = `
+ .card {
+ display: flex;
+ flex-direction: column;
+ gap: 12px;
+ width: 320px;
+ height: 180px;
+ padding: 24px;
+ border: 1px solid ${TEST_COLORS.slate200};
+ border-radius: 16px;
+ background: ${TEST_COLORS.white};
+ box-shadow: 0px 16px 40px 0px ${TEST_COLORS.slateShadow};
+ color: ${TEST_COLORS.slate900};
+ }
+ .title {
+ font-size: 24px;
+ font-weight: 700;
+ line-height: 32px;
+ }
+ .description {
+ font-size: 14px;
+ line-height: 20px;
+ color: ${TEST_COLORS.slate700};
+ }
+`
+
+export const fixtureHTML = `
+