Title.vue 484 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <LayoutContainer>
  3. <h2
  4. class="title"
  5. :style="{ color: titleColor }"
  6. >
  7. {{ title }}
  8. </h2>
  9. </LayoutContainer>
  10. </template>
  11. <script setup lang="ts">
  12. const props = defineProps({
  13. title: String,
  14. titleColor: {
  15. type: String,
  16. default: "#0E2D32",
  17. },
  18. });
  19. </script>
  20. <style scoped lang="scss">
  21. .title {
  22. font-weight: 600;
  23. font-size: 3rem;
  24. line-height: 3rem;
  25. margin-left: 1rem;
  26. width: 35rem;
  27. }
  28. </style>