mirror of
https://github.com/hazemKrimi/crimson-quirks-ui.git
synced 2026-05-01 18:20:28 +00:00
Update frontend feature card props
This commit is contained in:
@@ -3,11 +3,16 @@ import { FeatureOutput } from '../../graphql/types';
|
|||||||
|
|
||||||
type FrontendFeatureCardProps = {
|
type FrontendFeatureCardProps = {
|
||||||
feature: FeatureOutput;
|
feature: FeatureOutput;
|
||||||
|
className?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
const FrontendFeatureCard = ({ feature }: FrontendFeatureCardProps) => {
|
const FrontendFeatureCard = ({
|
||||||
|
feature,
|
||||||
|
className,
|
||||||
|
}: FrontendFeatureCardProps) => {
|
||||||
return (
|
return (
|
||||||
<Box
|
<Box
|
||||||
|
className={className}
|
||||||
padding='10px'
|
padding='10px'
|
||||||
background='white'
|
background='white'
|
||||||
boxShadow='1px 1px 10px rgba(50, 59, 105, 0.25)'
|
boxShadow='1px 1px 10px rgba(50, 59, 105, 0.25)'
|
||||||
|
|||||||
Reference in New Issue
Block a user