10 lines
348 B
TypeScript
10 lines
348 B
TypeScript
import React from 'react';
|
|
import { CardStack, CardStackProps } from '@/components/cardStack/CardStack';
|
|
|
|
type FeatureCardTwentyThreeProps = Omit<CardStackProps, 'titleSegments'>;
|
|
|
|
export const FeatureCardTwentyThree: React.FC<FeatureCardTwentyThreeProps> = (props) => {
|
|
return <CardStack {...props} />;
|
|
};
|
|
|
|
export default FeatureCardTwentyThree; |